-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 866 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (38 loc) · 866 Bytes
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} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#eef5ff',
100: '#d9e8ff',
200: '#bbd5ff',
300: '#8cb9ff',
400: '#5593ff',
500: '#4facfe',
600: '#2563eb',
700: '#1d4ed8',
800: '#1e3a8a',
900: '#172554',
},
surface: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
600: '#334155',
700: '#1e293b',
800: '#1a1f2e',
850: '#151923',
900: '#0f1219',
950: '#0a0d14',
},
},
fontFamily: {
quicksand: ['Quicksand', 'sans-serif'],
},
},
},
plugins: [],
};