-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 811 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (34 loc) · 811 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content:[
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
eve: {
bg: '#040608',
window: '#0d1218',
panel: '#151b23',
border: '#2a3644',
accent: '#4786a3',
text: '#a6b5c5',
highlight: '#e0eaf5',
cyan: '#50c8e8',
red: '#d9534f',
blue: '#06b6d4',
lgreen: '#10b981',
lblue: '#22d3ee',
llgreen: '#14b8a6',
pink: '#f43f5e2',
lyellow: '#f59e0b'
}
},
fontFamily: {
sans:['"Segoe UI"', 'Roboto', '"Helvetica Neue"', 'Arial', 'sans-serif'],
mono: ['Consolas', '"Courier New"', 'monospace']
}
},
},
plugins:[],
}