Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
VladislavNekto committed Jul 3, 2024
1 parent 92f5708 commit 849e8e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions flutter/lib/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -221,16 +221,16 @@ class MyTheme {
MyTheme._();

static const Color grayBg = Color(0xFFEFEFF2);
static const Color accent = Color(0xFF0071FF);
static const Color accent50 = Color(0x770071FF);
static const Color accent80 = Color(0xAA0071FF);
static const Color accent = Color(0xFF7BEC34); // 7bec34
static const Color accent50 = Color(0x7772E32B); // 72e32b
static const Color accent80 = Color(0x7772E32B);
static const Color canvasColor = Color(0xFF212121);
static const Color border = Color(0xFFCCCCCC);
static const Color idColor = Color(0xFF00B6F0);
static const Color darkGray = Color.fromARGB(255, 148, 148, 148);
static const Color cmIdColor = Color(0xFF21790B);
static const Color dark = Colors.black87;
static const Color button = Color(0xFF2C8CFF);
static const Color button = Color(0xFF6DD22E);
static const Color hoverBorder = Color(0xFF999999);

// ListTile
Expand Down
2 changes: 1 addition & 1 deletion flutter/lib/desktop/pages/desktop_home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DesktopHomePage extends StatefulWidget {
State<DesktopHomePage> createState() => _DesktopHomePageState();
}

const borderColor = Color(0xFF2F65BA);
const borderColor = Color(0xFF6DD22E); // #6dd22e

class _DesktopHomePageState extends State<DesktopHomePage>
with AutomaticKeepAliveClientMixin {
Expand Down

0 comments on commit 849e8e1

Please sign in to comment.