2024-02-18 13:55:22 +00:00
|
|
|
import type { Config } from "tailwindcss";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
2024-02-19 14:27:17 +00:00
|
|
|
plugins: [require("daisyui"), require("@tailwindcss/typography")],
|
|
|
|
daisyui: {
|
|
|
|
themes: ["dark"],
|
|
|
|
},
|
2024-02-18 13:55:22 +00:00
|
|
|
theme: {
|
2024-02-19 14:27:17 +00:00
|
|
|
fontFamily: {
|
|
|
|
caskaydiacove: "CaskaydiaCove Nerd Font",
|
|
|
|
},
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
"one-dark-base": "#282C34",
|
|
|
|
"border-color": "#545F64",
|
|
|
|
},
|
|
|
|
},
|
2024-02-18 13:55:22 +00:00
|
|
|
},
|
|
|
|
} satisfies Config;
|