-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (40 loc) · 852 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (40 loc) · 852 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
41
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['"Anonymous Pro"', ...defaultTheme.fontFamily.sans]
},
colors: {
exit: '#fe5f58',
exitHover: '#990000',
minimize: '#febc2e',
expand: '#28c841',
taskBar: '#44444b',
base: '#191724',
overlay: '#26233a',
muted: '#6e6a86',
text: '#e0def4',
love: '#eb6f92',
gold: '#f6c177',
rose: '#ebbcba',
pine: '#31748f',
foam: '#9ccfd8',
iris: '#c4a7e7',
highlight_high: '#524f67',
},
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' },
},
},
animation: {
'blink': 'blink 1.25s linear infinite'
}
}
},
plugins: []
};