36 lines
730 B
JavaScript
36 lines
730 B
JavaScript
import { fontFamily } from "tailwindcss/defaultTheme"
|
|
|
|
/** @type {Omit<import('tailwindcss').Config, "content">} */
|
|
const config = {
|
|
darkMode: "class",
|
|
theme: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: "#0056b3",
|
|
dark: "#00aeff",
|
|
},
|
|
background: {
|
|
DEFAULT: "#fff",
|
|
dark: "#181818",
|
|
},
|
|
white: "#fff",
|
|
black: "#000",
|
|
gray: "#d1d5db",
|
|
"gray-darker": {
|
|
DEFAULT: "#4b5563",
|
|
dark: "#9ca3af",
|
|
},
|
|
yellow: "#fef08a",
|
|
transparent: "transparent",
|
|
inherit: "inherit",
|
|
current: "currentColor",
|
|
},
|
|
fontFamily: {
|
|
sans: ["'Montserrat'", ...fontFamily.sans],
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config
|