feat(components): beauty dark theme color

This commit is contained in:
WanQuanXie 2024-05-01 15:19:22 +08:00
parent 5904e03360
commit fe36dd6dec
12 changed files with 30 additions and 23 deletions

View file

@ -7,7 +7,14 @@ const config: Config = {
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {},
extend: {
colors:{
'wash': 'rgb(255 255 255)',
'wash-dark': 'rgb(35 39 47)',
'gray-30': 'rgb(153,161,179)',
'gray-40': 'rgb(120,131,155)',
}
},
},
plugins: [require('@tailwindcss/typography')],
};