-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (33 loc) · 865 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (33 loc) · 865 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
colors: {
// dark variant
'transparent': 'transparent',
'dark': '#050405',
'gray': '#17181B',
'border': '#323246',
'primary': '#564FB1',
'light': ' #FFFFFF',
'text': '#637381',
'chalk': '#202124',
'focus': '#95B3CD',
// light variant
'lgray': '#F7F7FB',
'lblack': '#000000',
'ltext': '#202124',
'ltitle': '#231F20',
'llight': '#637381',
'lborder': '#DBDBDB',
},
fontFamily: {
primary: ['Sen', 'sans-serif'],
},
extend: {},
},
plugins: [],
}