File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,12 @@ ThemeData zulipThemeData(BuildContext context) {
12
12
// ColorScheme.surfaceContainer for the scrolled-under state and
13
13
// ColorScheme.surface otherwise, and those are different colors.
14
14
scrolledUnderElevation: 0 ,
15
- backgroundColor: Color (0xfff5f5f5 ),
15
+ backgroundColor: Color (0xfff5f5f5 ), // `bg-top-bar` in Figma
16
16
17
- shape: Border (bottom: BorderSide (color: Color (0xffcccccc ))),
17
+ shape: Border (bottom: BorderSide (
18
+ color: Color (0x33000000 ), // `border-bar` in Figma
19
+ strokeAlign: BorderSide .strokeAlignInside, // (default restated for explicitness)
20
+ )),
18
21
),
19
22
// This applies Material 3's color system to produce a palette of
20
23
// appropriately matching and contrasting colors for use in a UI.
@@ -27,7 +30,7 @@ ThemeData zulipThemeData(BuildContext context) {
27
30
colorScheme: ColorScheme .fromSeed (
28
31
seedColor: kZulipBrandColor,
29
32
),
30
- scaffoldBackgroundColor: const Color (0xfff6f6f6 ),
33
+ scaffoldBackgroundColor: const Color (0xfff0f0f0 ), // `bg-main` in Figma
31
34
tooltipTheme: const TooltipThemeData (preferBelow: false ),
32
35
);
33
36
}
You can’t perform that action at this time.
0 commit comments