-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 1.07 KB
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 1.07 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
const { DEFAULT_EXTENSIONS } = require('@babel/core');
/** @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-medium": ['Rubik-Medium', "sans-serif"],
"rubik-semibold": ['Rubik-SemiBold', "sans-serif"],
"rubik-light": ['Rubik-Light', "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: [],
}