-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
29 lines (29 loc) · 923 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'PE_dark_primary': '#111827',
'PE_dark_secondary': '#1f2937',
'PE_dark_white': '#f1f5f9',
'PE_dark_gray': '#cbd5e1',
'PE_dark_border': '#374151',
'PE_dark_green': '#10b981',
'PE_dark_red': '#ef4444',
'PE_dark_yellow': '#eab308',
'PE_dark_blue': '#3b82f6',
'PE_dark_accent': '#2563eb',
'PE_dark_accent_pressed': '#1d4ed8',
'PE_dark_scrollbar': '#475569',
'PE_dark_scrollbar_pressed': '#64748b',
},
},
},
plugins: [
require("tailwind-scrollbar")({ nocompatible: true }),
],
}