-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (45 loc) · 1.48 KB
/
tailwind.config.js
File metadata and controls
49 lines (45 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
content: [ "./components/**/*.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
fontFamily: {
"sf-pro-regular" : ['SF-Pro-Regular'],
"sf-pro-medium" : ['SF-Pro-Medium'],
"sf-pro-semibold": ['SF-Pro-Semibold']
},
colors: {
"custom-base": "#0F73F7",
"custom-secondary": "#FDFDFD",
"custom-gray": "#A2A2A2",
"custom-black": "#111111",
"custom-dark-gray": "#7A7A7A",
"custom-soft-gray": "#E3E6F0",
"custom-light-gray": "#EBEBEB",
"custom-gray-dark": "#4D4D4D",
// status
"custom-light-yellow":"#FFF7D6",
"custom-orange": "#F3934F",
"custom-light-orange": "#FCE8D9",
"custom-custom-red": "#F34F4F",
"custom-light-red": "#FFF0EE",
"custom-green": "#008364",
"custom-light-green": "#E4F6E8",
"custom-yellow": "#F1C400",
// blue
"custom-blue-100": "#CFE3FD",
"custom-blue-200": "#9FC7FC",
"custom-blue-300": "#6FABFA",
"custom-blue-400": "#3F8FF9",
"custom-blue-500": "#0F73F7",
"custom-blue-600": "#0C5CC6",
"custom-blue-700": "#094594",
"custom-blue-800": "#062E63",
"custom-blue-900": "#031731",
}
},
},
plugins: [],
}