-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
50 lines (49 loc) · 1.28 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/layouts/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["var(--font-ibm-plex-sans-condensed)"],
alt: ["var(--font-montserrat)"],
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
royalBlue: "#19009E",
pink: "#FF7DD1",
orange: "#EE6524",
camel: "rgba(255, 212, 181, 0.15)",
purple: {
DEFAULT: "#6629B0",
100: "rgba(102, 41, 176, 0.05)",
},
primary: {
900: "#25035F",
100: "rgba(0, 102, 250, 0.1)",
DEFAULT: "#0066FA",
},
secondary: {
DEFAULT: "#FF4758",
100: "rgba(255, 71, 88, 0.15)",
},
},
gridTemplateColumns: {
90: 'repeat(90, minmax(0, 1fr))'
},
gridColumn: {
'span-30': 'span 30 / span 30',
'span-20': 'span 20 / span 20',
'span-18': 'span 18 / span 18',
'span-15': 'span 15 / span 15',
},
},
},
plugins: [],
} satisfies Config;