-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all of your component files.
content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
fontFamily:{
rubik: ['Rubik-Regular', 'sans-serif'],
"rubik-bold": ['Rubik-Bold', 'sans-serif'],
"rubik-extrabold": ['Rubik-ExtraBold', 'sans-serif'],
"rubik-light": ['Rubik-Light', 'sans-serif'],
"rubik-medium": ['Rubik-Medium', 'sans-serif'],
"rubik-semibold": ['Rubik-SemiBold', 'sans-serif'],
},
colors: {
primary: {
100: "#0061FF0A",
200: "#0061FF1A",
300: "#0061FF",
},
accent: {
100: "#FBFBFD",
},
black: {
DEFAULT: "#000000",
100: "#8C8E98",
200: "#666876",
300: "#191D31",
},
danger: "#F75555",
}
},
},
plugins: [],
}