29 lines
633 B
TypeScript
29 lines
633 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
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: {
|
|
'lblue': '#17B6C4',
|
|
'dblue': '#2B939D',
|
|
'lgreen': '#9DC543',
|
|
'dgreen': '#819C3C',
|
|
'lyellow': '#EED72D',
|
|
'dyellow': '#DCB01F',
|
|
'lorange': '#F18524',
|
|
'dorange': '#D46823',
|
|
'cwhite': '#F5F5F5',
|
|
'cgray': '#646565',
|
|
'cblack': '#181818',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|