-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.25 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
/* eslint-disable global-require */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
'sans': ['ui-sans-serif', 'system-ui'],
'mono': ['ui-monospace', 'SFMono-Regular'],
'fuzzy': ['Fuzzy', 'ui-sans-serif', 'system-ui'],
'rubik': ['Rubik'],
'marker': ['Permanent Marker', 'cursive'],
'montserrat': ['Montserrat'],
'pangolin': ['Pangolin']
},
colors: {
'primary': '#242424',
'secondary': '#dee2e6',
'tertiary': '#e9ecef',
'transparent': 'transparent',
'white': '#ffffff',
'blue': {
50:'#eff6ff',
100:'#dbeafe',
200:'#bfdbfe',
300:'#93c5fd',
400:'#60a5fa',
500:'#3b82f6',
},
'amber': '#f59e0b',
'green': '#4ade80',
'gray': {
200: '#e5e7eb',
300: '#d1d5db',
400: '#9ca3af',
500: '#6b7280',
600: '#4b5563',
},
'dark-gray':'#6c757d',
'slate': {
100:'#f1f5f9',
},
'text-shadow': '#5d5c5c',
},
extend: {
},
},
plugins: [require('tailwind-scrollbar')],
}