clatter/web/tailwind.config.js

38 lines
793 B
JavaScript
Raw Permalink Normal View History

2024-08-10 00:44:44 +02:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
2024-08-10 09:18:34 +02:00
mode: "jit",
2024-08-10 00:44:44 +02:00
theme: {
extend: {
colors: {
"clatter-black": "#0c0a09",
"clatter-gray": {
100: "#292524",
200: "#3e3938",
300: "#4e4947",
350: "#5a5553",
400: "#6b6563",
2024-08-10 09:18:34 +02:00
450: "#7c7674",
2024-08-10 00:44:44 +02:00
500: "#9c9591",
2024-08-10 09:18:34 +02:00
550: "#a9a4a1",
2024-08-10 00:44:44 +02:00
600: "#b3adaa",
}
},
borderRadius: {
"4xl": "1.75rem",
"5xl": "2.25rem",
},
padding: {
"1.75": "0.4375rem",
},
fontFamily: {
"lexend": ['"Lexend"', "sans-serif"],
},
margin: {
"1.75": "0.4375rem",
}
},
},
plugins: [],
};