52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"secondary-container": "#e2dfdb",
|
|
"on-tertiary-container": "#b19f8d",
|
|
"inverse-surface": "#303030",
|
|
"outline": "#887274",
|
|
"background": "#fbf9f8",
|
|
"secondary-fixed": "#e5e2de",
|
|
"on-primary-container": "#ef8191",
|
|
"on-tertiary-fixed-variant": "#524436",
|
|
"surface-container-lowest": "#ffffff",
|
|
"secondary-fixed-dim": "#c8c6c2",
|
|
"tertiary-fixed-dim": "#d7c3b0",
|
|
"on-surface-variant": "#554244",
|
|
"on-secondary-fixed-variant": "#474744",
|
|
"surface-bright": "#fbf9f8",
|
|
"on-primary-fixed-variant": "#7e2839",
|
|
"primary-container": "#6b1a2c",
|
|
"primary": "#4d0218",
|
|
"on-background": "#1b1c1c",
|
|
"inverse-on-surface": "#f2f0f0",
|
|
"secondary": "#5f5e5b",
|
|
"on-secondary": "#ffffff",
|
|
"on-error": "#ffffff",
|
|
"surface-variant": "#e4e2e2",
|
|
"error": "#ba1a1a",
|
|
"surface-container-low": "#f5f3f3",
|
|
"primary-fixed": "#ffd9dc",
|
|
"tertiary-fixed": "#f4dfcb",
|
|
"on-tertiary-fixed": "#241a0e",
|
|
"surface-dim": "#dbd9d9",
|
|
"surface-container": "#efeded",
|
|
"on-primary": "#ffffff",
|
|
"error-container": "#ffdad6",
|
|
"on-surface": "#1b1c1c",
|
|
"on-tertiary": "#ffffff",
|
|
},
|
|
fontFamily: {
|
|
caslon: ["Libre Caslon Text", "serif"],
|
|
sans: ["Work Sans", "sans-serif"],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|