-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 970 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 970 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
dracula: {
bg: '#282A36',
'bg-light': '#343746',
'bg-lighter': '#424450',
'bg-dark': '#21222C',
'bg-darker': '#191A21',
'current-line': '#6272A4',
selection: '#44475A',
foreground: '#F8F8F2',
comment: '#6272A4',
red: '#FF5555',
orange: '#FFB86C',
yellow: '#F1FA8C',
green: '#50FA7B',
cyan: '#8BE9FD',
purple: '#BD93F9',
pink: '#FF79C6',
'ui-element': '#343746',
},
functional: {
red: '#DE5735',
orange: '#A39514',
green: '#089108',
cyan: '#0081D6',
purple: '#815CD6',
},
},
scale: {
'102': '1.02',
},
},
},
plugins: [],
};