File size: 715 Bytes
b2e4883 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./lib/**/*.{ts,tsx}",
],
theme: {
extend: {
colors: {
// Per docs/05-accessibility.md §High contrast and theming
bg: "var(--bg)",
fg: "var(--fg)",
accent: "var(--accent)",
focus: "var(--focus)",
"limb-kick": "var(--limb-kick)",
"limb-snare": "var(--limb-snare)",
"limb-hihat": "var(--limb-hihat)",
"limb-ride": "var(--limb-ride)",
"limb-crash": "var(--limb-crash)",
"limb-china": "var(--limb-china)",
},
},
},
plugins: [],
};
export default config;
|