29 lines
576 B
TypeScript
29 lines
576 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import typography from "@tailwindcss/typography";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
surface: {
|
|
DEFAULT: "#1a1a2e",
|
|
light: "#252540",
|
|
dark: "#12121f",
|
|
},
|
|
accent: {
|
|
DEFAULT: "#4a9eff",
|
|
hover: "#3a8eef",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [typography],
|
|
};
|
|
|
|
export default config;
|