forked from team-watchdog/watchdog-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.04 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./partials/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
},
fontFamily: {
'ui': ['Overpass'],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
'slate-200': '#e2e8f0',
'sky-800': '#075985',
'rating-red': '#C21C1C',
'zinc-100': '#f4f4f5',
'zinc-200': '#e4e4e7',
'zinc-300': '#d4d4d8',
'slate-100': '#f1f5f9',
'zinc-700': '#3f3f46',
'gray-200': '#e5e7eb',
'gray-400': '#474747',
'blue-50': '#eff6ff',
'green-tag': '#12A682',
'yellow-1': '#E0C224',
'yellow-0': '#FFF6D6',
'blue-1': '#1A4690',
'blue-2': '#1A4DA3',
'blue-3': '#1E54B9',
'blue-0': '#203E75',
'white': '#ffffff',
'black': '#000000',
'purple': '#3f3cbb',
'midnight': '#121063',
'metal': '#565584',
'tahiti': '#3ab7bf',
'silver': '#ecebff',
'bubble-gum': '#ff77e9',
'bermuda': '#78dcca',
},
},
plugins: [],
}