-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 988 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (31 loc) · 988 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.{js,ts,tsx}', './app/**/*.{js,ts,tsx}', './components/**/*.{js,ts,tsx}'],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
bg2: '#272d33',
background: '#191919',
primary: '#d4d4d4',
darkBackground: '#5f4137',
},
fontFamily: {
jostRegular: ['jost-Regular'],
jostLight: ['jost-Light'],
jostLightItalic: ['jost-LightItalic'],
jostBold: ['jost-Bold'],
jostBoldItalic: ['jost-BoldItalic'],
jostThin: ['jost-Thin'],
jostThinItalic: ['jost-ThinItalic'],
jostMedium: ['jost-Medium'],
jostMediumItalic: ['jost-MediumItalic'],
jostExtraLight: ['jost-ExtraLight'],
jostExtraLightItalic: ['jost-ExtraLightItalic'],
jostSemiBold: ['jost-SemiBold'],
jostSemiBoldItalic: ['jost-SemiBoldItalic'],
},
},
},
plugins: [],
};