-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 855 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 855 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
/* eslint-disable global-require */
/* eslint-disable import/no-extraneous-dependencies */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
colors: {
primary: '#2998ff',
'primary-dark': '#5643fa',
'gray-light-1': '#f9f7f6',
'gray-light-2': '#e5e7eb',
'gray-light-3': '#ccc',
'gray-dark-1': '#333',
'gray-dark-2': '#999',
'slate-1': '#334155',
'slate-2': '#1e293b',
'slate-3': '#0f172a',
secondary: '#FF3366',
'secondary-dark': '#eb2f64',
white: '#fff',
black: '#000',
},
fontFamily: {
inter: 'Inter, sans-serif',
},
fontWeight: {
light: 300,
base: 400,
bold: 600,
},
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}