-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
57 lines (56 loc) · 1.6 KB
/
tailwind.config.ts
File metadata and controls
57 lines (56 loc) · 1.6 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
const config: Config = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./content/**/*.{js,ts,jsx,tsx,mdx}",
"./mdx-components.tsx",
],
theme: {
extend: {
colors: {
lcarsback: "#000",
primary: "#313748",
primarytext: "#9fa5b8",
secondary: "#53596c",
secondaryhover: "#9fa5b8",
tertiary: "#6e748a",
tertiaryhover: "#80c8ec",
colorquaternary: "#915e4d",
colorquinternary: "#8e4437",
colortext: "#9fa5b8",
colortextdark: "#000",
colorlink: "#3c8dbc",
colordanger: "#d55138",
colordangerbright: "#f37052",
colorredalert: "#ea3323",
colorsuccess: "#0bd08a",
colorsuccessdark: "#024b3b",
colordisabled: "#1f2228",
colorsupplement01: "#411e17",
colorsupplement02: "#131315",
colorsupplement03: "#bcbc53",
colorsupplement04: "#a856a8",
},
fontFamily: {
sans: [
'"Antonio var", sans-serif',
{
fontFeatureSettings: '"cv11", "ss01"',
fontVariationSettings: '"opsz" 32',
},
],
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [typography],
};
export default config;