-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 884 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/renderer/app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'primary': '#6ACCDC',
'light': '#ffffff',
'black': '#000000',
'dark': '#1C304F',
'green': '#7ADC6A',
'red': '#DC6A6A',
'light-gray': '#E8E8E8',
'gray': '#B0B1B1',
},
fontFamily: {
sans: ['Poppins', 'sans-serif'],
},
borderRadius: {
'none': '0',
'1sm': '3.5px',
'sm': '7px',
DEFAULT: '12px',
'lg': '49.84px',
},
fontSize: {
sm: ['10px'],
base: ['12px'],
lg: ['18px'],
xl: ['24px'],
},
fontWeight: {
'normal': 400,
'medium': 500,
'bold': 700,
}
},
},
plugins: [],
}