-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
34 lines (32 loc) · 989 Bytes
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type { Config } from "tailwindcss";
const palette = {
transparent: { DEFAULT: "transparent" },
white: { DEFAULT: "#ffffff" },
deep: { DEFAULT: "#14161d", dark: "#0e1015" },
brand: { DEFAULT: "#e5735f" },
contrast: { DEFAULT: "#365bff", dark: "#4d6cf6", light: "#4e6ef7" },
secondary: { DEFAULT: "#9fa6c5" },
spacegray: { DEFAULT: "#22242b" },
};
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
colors: { ...palette },
fontFamily: { body: ["Inria Sans", "sans-serif"] },
textColor: {
...palette,
DEFAULT: palette.white.DEFAULT,
base: palette.white,
},
borderColor: { ...palette, DEFAULT: palette.spacegray.DEFAULT },
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [],
};
export default config;