forked from kruzhok-team/lapki-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
100 lines (83 loc) · 2.44 KB
/
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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/** @type {import('tailwindcss').Config} */
import { colors } from './src/renderer/src/theme';
const plugin = require('tailwindcss/plugin');
export default {
content: ['./src/renderer/index.html', './src/renderer/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
Fira: ['Fira Sans', 'sans-serif'],
'Fira-Mono': ['Fira Mono', 'monospace'],
},
colors,
},
},
plugins: [
require('tailwind-scrollbar')({ nocompatible: true }),
plugin(function ({ addBase }) {
const themesToInject = {
':root': {
'--p': '#0C4BEE',
'--p-h': '#225EF9',
'--p-a': '#2A62F4',
'--e': 'red',
'--s': 'lime',
'--w': '#E4A11B',
'--m-a': '#f8f9fa',
'--m-i': '#343a40',
'--bg-p': '#262626',
'--bg-s': '#121111',
'--bg-h': '#434343',
'--bg-a': '#545454',
'--b-c': '#f8f9fa',
'--b-p': '#666666',
'--b-w': '#E4A11B',
'--t-p': '#f2f2f2',
'--t-s': '#fff',
'--t-i': '#a3a2a2',
'--t-d': 'rgb(156,163,175)',
'--t-h': 'yellow',
'--c-e-t': 'vs-dark',
'--s-tr': 'rgba(162,162,162, 0.5)',
'--s-th': 'rgba(162,162,162, 0.7)',
'--g': 'rgba(255,255,255,0.03)',
'--d-n-bg': 'rgba(0,0,0,0.3)',
'--d-n-c': '#FFFFFF',
'--d-t-c': '#F2F2F2',
'--d-s-c': '#F2F2F2',
},
':root[data-theme="light"]': {
'--p': '#0C4BEE',
'--p-h': '#225EF9',
'--p-a': '#2A62F4',
'--e': 'red',
'--s': 'lime',
'--w': '#E4A11B',
'--m-a': '#f8f9fa',
'--m-i': '#343a40',
'--bg-p': '#e7e7e7',
'--bg-s': '#f2f2f2',
'--bg-h': '#cfcfcf',
'--bg-a': '#c2c2c2',
'--b-c': '#343a40',
'--b-p': '#c2c2c2',
'--b-w': '#E4A11B',
'--t-p': '#000',
'--t-s': '#fff',
'--t-i': '#b3b2b2',
'--t-d': 'rgb(156,163,175)',
'--t-h': 'yellow',
'--c-e-t': 'vs-light',
'--s-tr': 'rgba(162,162,162, 0.5)',
'--s-th': 'rgba(162,162,162, 0.7)',
'--g': 'rgba(0,0,0,0.08)',
'--d-n-bg': 'rgba(255,255,255,0.5)',
'--d-n-c': '#000000',
'--d-t-c': '#404040',
'--d-s-c': '#F2F2F2',
},
};
addBase(themesToInject);
}),
],
};