-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 1001 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./App.{js,jsx,ts,tsx}",
"./app/**/*.{js,jsx,ts,tsx}",
"./app/**/**/*.{js,jsx,ts,tsx}",
"./src/**/*.{js,jsx,ts,tsx}",
"./src/**/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
signum: {
DEFAULT: "#0099ff",
dark: "#0066ff",
},
"signum-secondary": {
DEFAULT: "#E8F3FF",
light: "#EAF0F6",
},
"light-green": { DEFAULT: "#00FF88" },
"midgnight-blue": { DEFAULT: "#021851" },
muted: {
DEFAULT: "#F4F4F5",
dark: "#27272A",
},
"muted-foreground": { DEFAULT: "#71717A", dark: "#A1A1AA" },
"card-foreground": {
DEFAULT: "#FFFFFF",
dark: "#010101",
},
"card-border": {
DEFAULT: "#E4E4E7",
dark: "#27272A",
},
},
},
},
plugins: [],
};