-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 956 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 956 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
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/renderer/index.html',
'./src/renderer/**/*.{vue,js,ts,jsx,tsx}'
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#E91E63',
50: '#F9C5D7',
100: '#F8B3CA',
200: '#F48DB0',
300: '#F06897',
400: '#ED437D',
500: '#E91E63',
600: '#CF1454',
700: '#AF1147',
800: '#8E0E39',
900: '#6D0B2C',
950: '#5D0926'
},
zinc: {
DEFAULT: '#18181B',
50: '#D6D6DB',
100: '#C9C9CF',
200: '#AEAEB7',
300: '#93939F',
400: '#787887',
500: '#60606C',
600: '#484851',
700: '#303036',
800: '#18181B',
900: '#111113',
950: '#0D0D0F'
},
}
}
},
plugins: [
require('@tailwindcss/forms')
]
}