25 lines
561 B
JavaScript
25 lines
561 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
surface: {
|
|
DEFAULT: "#0f1419",
|
|
raised: "#151c24",
|
|
overlay: "#1a232e",
|
|
},
|
|
accent: {
|
|
DEFAULT: "#3d9aed",
|
|
muted: "#2a6fa3",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ["IBM Plex Sans", "system-ui", "sans-serif"],
|
|
mono: ["IBM Plex Mono", "ui-monospace", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|