mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
29 lines
499 B
JavaScript
29 lines
499 B
JavaScript
module.exports = {
|
|
// content: [
|
|
// `${__dirname}/src/**/*.{js,jsx,ts,tsx}`,
|
|
// `${__dirname}/docs/**/*.{js,jsx,ts,tsx}`,
|
|
// ],
|
|
theme: {
|
|
extend: {
|
|
nonepress: {
|
|
light: {
|
|
theme: {
|
|
DEFAULT: "#ea5252",
|
|
},
|
|
},
|
|
dark: {
|
|
theme: {
|
|
DEFAULT: "#ea5252",
|
|
},
|
|
},
|
|
},
|
|
colors: {
|
|
hero: "#ea5252",
|
|
light: {
|
|
DEFAULT: "#fffdfd",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|