25 lines
477 B
JavaScript
25 lines
477 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extends: {},
|
|
colors: {
|
|
"dark-primary": "#26232A",
|
|
"light-primary": "#313039",
|
|
secondary: "#C2C2CA",
|
|
white: "white",
|
|
gold: "#F5C346",
|
|
},
|
|
sans: ["DM Sans", "sans-serif"],
|
|
mono: ["DM Mono", "monospace"],
|
|
},
|
|
fontWeight: {
|
|
regular: 400,
|
|
medium: 500,
|
|
bold: 700,
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
|