-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
73 lines (73 loc) · 1.77 KB
/
tailwind.config.js
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
"./screens/**/*.{js,jsx,ts,tsx}",
"./Navigation.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {
fontFamily: {
mono: ["SpaceMono"],
},
filter: {
dropShadowDark: "drop-shadow(0 1px 1px rgb(255 255 255 / 1))",
dropShadowLight: "drop-shadow(0 1px 1px rgb(0 0 0 / 1))",
},
colors: {
border: "#1a332a",
input: "#243f34",
ring: "#274b36",
background: "#0d1c11",
foreground: "#a9ffea",
primary: {
DEFAULT: "#62dfa0",
foreground: "#ffffff",
},
secondary: {
DEFAULT: "#1cd7a2",
foreground: "#ffffff",
},
destructive: {
DEFAULT: "#26a879",
foreground: "#ffffff",
},
muted: {
DEFAULT: "#1a1e19",
foreground: "#b3b3c0",
},
accent: {
DEFAULT: "#eaffff",
foreground: "#1a1a1a",
},
popover: {
DEFAULT: "#1c1e19",
foreground: "#e4f3f4",
},
card: {
DEFAULT: "#102314",
foreground: "#e4f3f4",
},
},
borderRadius: {
lg: "0.5rem",
md: "calc(0.5rem - 2px)",
sm: "calc(0.5rem - 4px)",
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {},
},
},
plugins: [],
};