-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
32 lines (31 loc) · 918 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./App.{js,jsx,ts,tsx}',
'./screens/**/*.{js,ts,jsx,tsx}',
'./assets/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./navigation/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
'roboto-black': ['Roboto-Black', 'sans-serif'],
'roboto-thin': ['Roboto-Thin', 'sans-serif'],
'roboto-bold': ['Roboto-Bold', 'sans-serif'],
'roboto-light': ['Robot-Light', 'sans-serif'],
'roboto-medium': ['Roboto-Medium', 'sans-serif'],
'roboto-regular': ['Roboto-Regular', 'sans-serif'],
'mono-regular': ['PTMono-Regular', 'sans-serif'],
},
colors: {
primary: '#1293A9',
textGray: '#616165',
textGre: '#4F4E52',
softGreen: '#E5F4F3',
buttonGray: '#CCCCCC',
},
},
},
plugins: [],
};