mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 09:11:38 +00:00
* fix tags margin * modify article padding * fix search page icon position * add custom color
28 lines
604 B
JavaScript
28 lines
604 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./layouts/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bluish: {
|
|
gray: 'rgba(245,247,250)',
|
|
},
|
|
rua: {
|
|
gray: {
|
|
100: '#aabfc5'
|
|
}
|
|
}
|
|
},
|
|
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%)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|