mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-14 21:48:39 -05:00
refactor: move dark background colors to colors object
Addresses review feedback — define gray900 and gray850 in the colors object and reference them in the dark palette.
This commit is contained in:
@@ -12,6 +12,8 @@ export const typographyLevels = {
|
||||
export const colors = {
|
||||
gray200: "#EFEFEF",
|
||||
gray700: "#313131",
|
||||
gray900: "#151518",
|
||||
gray850: "#1c1c21",
|
||||
blueBlueWave: "#1570EF",
|
||||
};
|
||||
|
||||
@@ -32,7 +34,7 @@ export const darkPalette = {
|
||||
main: colors.gray700,
|
||||
},
|
||||
background: {
|
||||
default: "#151518",
|
||||
paper: "#1c1c21",
|
||||
default: colors.gray900,
|
||||
paper: colors.gray850,
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user