mirror of
https://github.com/Xinrea/bili-shadowreplay.git
synced 2025-11-24 20:15:34 +08:00
31 lines
615 B
JavaScript
31 lines
615 B
JavaScript
import flowbitePlugin from "flowbite/plugin";
|
|
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{html,js,svelte,ts}",
|
|
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// flowbite-svelte
|
|
primary: {
|
|
50: "#FFF5F2",
|
|
100: "#FFF1EE",
|
|
200: "#FFE4DE",
|
|
300: "#FFD5CC",
|
|
400: "#FFBCAD",
|
|
500: "#FE795D",
|
|
600: "#EF562F",
|
|
700: "#EB4F27",
|
|
800: "#CC4522",
|
|
900: "#A5371B",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [flowbitePlugin],
|
|
};
|