23 lines
426 B
JavaScript
23 lines
426 B
JavaScript
module.exports = {
|
|
darkMode: "class",
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#041c40",
|
|
secondary: "#e06923",
|
|
"dark-bg": "#313131",
|
|
"light-bg": "#E3E8EC",
|
|
},
|
|
backdropBlur: {
|
|
xs: "2px",
|
|
sm: "4px",
|
|
md: "8px",
|
|
lg: "12px",
|
|
xl: "20px",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|