-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.js
38 lines (38 loc) · 1.09 KB
/
tailwind.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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class', '[data-theme="dark"]'],
content: ['./app/**/*.{hbs,js}'],
theme: {
extend: {
colors: {
gray: {
50: '#F9FAFB',
100: '#EBF1F5',
200: '#D9E3EA',
300: '#C5D2DC',
400: '#9BA9B4',
500: '#707D86',
600: '#55595F',
700: '#33363A',
800: '#25282C',
900: '#151719',
},
sky: {
100: '#e6f0fb',
200: '#bad5f5',
300: '#8dbbef',
400: '#61a0e8',
500: '#3485e2',
600: '#1c6cc7',
700: '#16539a',
800: '#103b6d',
900: '#092341',
},
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
};