36 lines
750 B
JavaScript
36 lines
750 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ark: {
|
|
bg: "#141319",
|
|
nav: "#08070c",
|
|
panel: "#1d1e23",
|
|
line: "#2a2a32",
|
|
gold: "#eeb726",
|
|
gold2: "#ffd35c",
|
|
muted: "#8f9099",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: [
|
|
"Noto Sans SC",
|
|
"Noto Sans TC",
|
|
"PingFang SC",
|
|
"PingFang TC",
|
|
"Microsoft YaHei",
|
|
"Microsoft JhengHei",
|
|
"ui-sans-serif",
|
|
"system-ui",
|
|
"-apple-system",
|
|
"Segoe UI",
|
|
"sans-serif",
|
|
],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|