-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.15 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./App.tsx', './app/**/*.tsx'],
theme: {
extend: {
fontFamily: {
title: 'Roboto_700Bold',
body: 'Roboto_400Regular',
alt: 'BaiJamjuree_700Bold',
},
colors: {
gray: {
50: '#eaeaea',
100: '#bebebf',
200: '#9e9ea0',
300: '#727275',
400: '#56565a',
500: '#2c2c31',
600: '#28282d',
700: '#1f1f23',
800: '#18181b',
900: '#121215',
},
purple: {
50: '#f3eefc',
100: '#d8cbf7',
200: '#c6b2f3',
300: '#ab8eee',
400: '#9b79ea',
500: '#8257e5',
600: '#764fd0',
700: '#5c3ea3',
800: '#48307e',
900: '#372560',
},
green: {
50: '#e6fbef',
100: '#b1f1ce',
200: '#8cebb6',
300: '#57e295',
400: '#36dc81',
500: '#04d361',
600: '#04c058',
700: '#039645',
800: '#027435',
900: '#025929',
},
},
},
},
plugins: [],
}