This commit is contained in:
DefectingCat
2022-03-20 19:08:06 +08:00
commit 7e3030bd01
21 changed files with 3308 additions and 0 deletions

34
tailwind.config.js Normal file
View File

@ -0,0 +1,34 @@
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,md,mdx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./layouts/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
bluish: {
gray: 'rgba(245,247,250)',
},
rua: {
gray: {
100: '#aabfc5',
600: 'rgb(66,66,66)',
800: 'rgb(35,38,38)', // card background in dark
900: 'rgb(24,25,26)', // body background in dark
},
},
},
boxShadow: {
outline: '0 0 0 3px rgba(83, 220, 246, 0.6)',
underline: 'inset 0px -2px 0px 0px rgb(85 200 188 / 70%)',
throughline: 'inset 0px -0.5em 0px 0px rgb(85 200 188 / 70%)',
},
backgroundImage: {
underline: 'linear-gradient(rgb(240 240 240),rgb(240 240 240))',
'underline-dark': 'linear-gradient(rgb(110 110 110),rgb(160 160 160))',
},
},
},
plugins: [],
};