feat: tailwindcss dark mode color

This commit is contained in:
alisa
2023-04-25 21:45:33 +08:00
parent e88fff9e3d
commit a3a869d9c1
2 changed files with 23 additions and 2 deletions
+5 -2
View File
@@ -5,12 +5,15 @@ module.exports = {
theme: {
extend: {
colors: {
main: '#5973fe',
yes: '#3fb68b',
no: '#ff5353',
info: '#00b2ff',
textMain: '#333',
primary: '#666cff',
main: 'var(--text-main)',
secondary: 'var(--text-secondary)',
card: 'var(--bg-card)',
hover: 'var(--bg-hover)',
active: 'var(--bg-active)',
},
},
},