mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
opt. for ssh
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
class BuildData {
|
||||
static const String name = "ServerBox";
|
||||
static const int build = 186;
|
||||
static const int build = 187;
|
||||
static const String engine =
|
||||
"Flutter 3.7.0 • channel stable • https://github.com/flutter/flutter.git\nFramework • revision b06b8b2710 (4 days ago) • 2023-01-23 16:55:55 -0800\nEngine • revision b24591ed32\nTools • Dart 2.19.0 • DevTools 2.20.1\n";
|
||||
static const String buildAt = "2023-01-28 00:10:21.021365";
|
||||
static const int modifications = 8;
|
||||
static const String buildAt = "2023-01-28 13:54:17.985459";
|
||||
static const int modifications = 13;
|
||||
}
|
||||
|
||||
54
lib/data/res/terminal_theme.dart
Normal file
54
lib/data/res/terminal_theme.dart
Normal file
@@ -0,0 +1,54 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:xterm/ui.dart';
|
||||
|
||||
const termDarkTheme = TerminalTheme(
|
||||
cursor: Color(0XAAAEAFAD),
|
||||
selection: Color(0XAAAEAFAD),
|
||||
foreground: Color(0XFFCCCCCC),
|
||||
background: Colors.black,
|
||||
black: Color(0XFF000000),
|
||||
red: Color(0XFFCD3131),
|
||||
green: Color(0XFF0DBC79),
|
||||
yellow: Color(0XFFE5E510),
|
||||
blue: Color(0XFF2472C8),
|
||||
magenta: Color(0XFFBC3FBC),
|
||||
cyan: Color(0XFF11A8CD),
|
||||
white: Color(0XFFE5E5E5),
|
||||
brightBlack: Color(0XFF666666),
|
||||
brightRed: Color(0XFFF14C4C),
|
||||
brightGreen: Color(0XFF23D18B),
|
||||
brightYellow: Color(0XFFF5F543),
|
||||
brightBlue: Color(0XFF3B8EEA),
|
||||
brightMagenta: Color(0XFFD670D6),
|
||||
brightCyan: Color(0XFF29B8DB),
|
||||
brightWhite: Color(0XFFFFFFFF),
|
||||
searchHitBackground: Color(0XFFFFFF2B),
|
||||
searchHitBackgroundCurrent: Color(0XFF31FF26),
|
||||
searchHitForeground: Color(0XFF000000),
|
||||
);
|
||||
|
||||
const termLightTheme = TerminalTheme(
|
||||
cursor: Color(0XFFAEAFAD),
|
||||
selection: Color(0XFFAEAFAD),
|
||||
foreground: Color(0XFF000000),
|
||||
background: Color(0XFFFFFFFF),
|
||||
black: Color(0XFF000000),
|
||||
red: Color(0XFFCD3131),
|
||||
green: Color(0XFF0DBC79),
|
||||
yellow: Color(0XFFE5E510),
|
||||
blue: Color(0XFF2472C8),
|
||||
magenta: Color(0XFFBC3FBC),
|
||||
cyan: Color(0XFF11A8CD),
|
||||
white: Color(0XFFE5E5E5),
|
||||
brightBlack: Color(0XFF666666),
|
||||
brightRed: Color(0XFFF14C4C),
|
||||
brightGreen: Color(0XFF23D18B),
|
||||
brightYellow: Color(0XFFF5F543),
|
||||
brightBlue: Color(0XFF3B8EEA),
|
||||
brightMagenta: Color(0XFFD670D6),
|
||||
brightCyan: Color(0XFF29B8DB),
|
||||
brightWhite: Color(0XFFFFFFFF),
|
||||
searchHitBackground: Color(0XFFFFFF2B),
|
||||
searchHitBackgroundCurrent: Color(0XFF31FF26),
|
||||
searchHitForeground: Color(0XFF000000),
|
||||
);
|
||||
Reference in New Issue
Block a user