Files
DefectingCat.github.io/tailwind.config.js
DefectingCat 3413662a2a Fix tiny issues
* fix tags margin
* modify article padding
* fix search page icon position
* add custom color
2022-01-18 22:27:57 +08:00

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: [],
};