-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.extension.config.js
68 lines (65 loc) · 1.66 KB
/
tailwind.extension.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import {nextui} from '@nextui-org/react';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/renderer/extension/**/*.{html,tsx}'],
darkMode: 'class',
plugins: [
nextui({
themes: {
dark: {
colors: {
danger: {
DEFAULT: '#dc2626',
},
primary: {
DEFAULT: '#0050EF',
},
secondary: {
DEFAULT: '#AA00FF',
},
},
},
light: {
colors: {
danger: {
DEFAULT: '#dc2626',
},
primary: {
DEFAULT: '#00A9FF',
},
secondary: {
DEFAULT: '#d500f9',
},
},
},
},
}),
typography(),
],
theme: {
extend: {
backgroundImage: {
GradientDark:
'linear-gradient(to right top, #212121, #202020, #1f1f1f, #1e1e1e, #1d1d1d, ' +
'#1c1c1c, #1b1b1b, #1a1a1a, #181818, #161616, #141414, #121212)',
GradientLight:
'linear-gradient(to right top, #f3f3f3, #f3f3f3, #f3f3f3, #f3f3f3, #f3f3f3, ' +
'#f4f4f5, #f4f4f6, #f4f5f8, #f3f7fc, #f0fafe, #eefdfe, #eefffc)',
},
colors: {
LynxOrange: '#FF5F00',
LynxRaisinBlack: '#212121',
LynxWhiteSecond: '#f6f6f6',
LynxWhiteThird: '#ececec',
LynxWhiteFourth: '#e1e1e1',
LynxWhiteFifth: '#d0d0d0',
DarkGray: '#424242',
},
},
fontFamily: {
JetBrainsMono: ['JetBrainsMono', 'sans-serif'],
Nunito: ['Nunito', 'sans-serif'],
},
},
};