-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
42 lines (41 loc) · 1.02 KB
/
tailwind.config.ts
File metadata and controls
42 lines (41 loc) · 1.02 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
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: [
'"Noto Sans"',
"ui-sans-serif",
"system-ui",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
sans_grotesque: [
'"Bricolage Grotesque"',
"ui-sans-serif",
"system-ui",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
boxShadow: {
primary: ".5rem .5rem 0 0 hsl(237, 18%, 23%)",
secondary: ".2rem .2rem 0 0 hsl(237, 18%, 23%)",
},
colors: {
customGreen: "#6FDCBF",
customGray: "#F6F4F6",
customPurple: "#AE8FDB",
customYellow: "#FEF8B4",
},
},
},
plugins: [],
} satisfies Config;