We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb6fe21 commit fbb58a2Copy full SHA for fbb58a2
tailwind.config.ts
@@ -20,7 +20,6 @@ const config: Config = {
20
colors: {
21
gitify: {
22
font: 'var(--fgColor-default)',
23
- background: 'var(--bgColor-muted)',
24
sidebar: '#24292e',
25
footer: 'var(--bgColor-neutral-muted)',
26
@@ -76,6 +75,8 @@ const config: Config = {
76
75
// TODO - ideally we would use GitHub Primer Design Tokens instead of TailwindCSS
77
addBase({
78
'[data-color-mode="light"]': {
+ '--gitify-background': 'var(--bgColor-default)',
79
+
80
'--gitify-scrollbar-track': colors.gray[100],
81
'--gitify-scrollbar-thumb': colors.gray[300],
82
'--gitify-scrollbar-thumb-hover': colors.gray[400],
@@ -85,6 +86,8 @@ const config: Config = {
85
86
'--gitify-counter-text': colors.gray[800],
87
},
88
'[data-color-mode="dark"]': {
89
+ '--gitify-background': 'var(--bgColor-muted)',
90
91
'--gitify-scrollbar-track': colors.gray[900],
92
'--gitify-scrollbar-thumb': colors.gray[700],
93
'--gitify-scrollbar-thumb-hover': colors.gray[600],
0 commit comments