forked from aleksilassila/reiverr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (63 loc) · 1.78 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
/**
* https://huemint.com/website-monochrome/#palette=353633-fbfdff
* https://huemint.com/website-monochrome/#palette=161718-dfd1a3 Very Nice
* https://huemint.com/website-monochrome/#palette=151a1a-ebab2e
*/
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
display: ['Montserrat', 'system', 'sans-serif']
},
colors: {
darken: '#07050166',
lighten: '#fde68a20',
// 'highlight-foreground': '#E7E5E4'
'highlight-foreground': '#f6c304',
'highlight-background': '#161517',
primary: {
50: 'hsl(40, 60%, 95%)', //''#fcf9ea',
100: 'hsl(40, 60%, 90%)', //''#faefc7',
200: 'hsl(40, 60%, 80%)', //''#f6dc92',
300: 'hsl(40, 60%, 70%)', //''#f0c254',
400: 'hsl(40, 60%, 65%)', //''#ebab2e',
500: 'hsl(40, 60%, 55%)', //'#da9018',
600: 'hsl(40, 30%, 24%)', //'#bc6e12',
700: 'hsl(40, 30%, 18%)', //'#964e12',
800: 'hsl(40, 20%, 12%)', //'#7d3f16',
900: 'hsl(40, 20%, 8%)', //'#6a3419',
950: 'hsl(40, 20%, 4%)' //'#3e1a0a'
},
secondary: {
50: 'hsl(40, 12%, 95%)',
100: 'hsl(40, 12%, 90%)',
200: 'hsl(40, 12%, 80%)',
300: 'hsl(40, 12%, 70%)',
400: 'hsl(40, 12%, 65%)',
500: 'hsl(40, 12%, 55%)', // #0a0807
600: 'hsl(40, 8%, 30%)',
700: 'hsl(40, 8%, 20%)',
800: 'hsl(40, 8%, 12%)', //'#1a1814', //'#171310',
900: 'hsl(40, 8%, 7%)', //'#14130f',
950: 'hsl(40, 8%, 4%)' //'#020303'
}
},
keyframes: {
timer: {
'0%': { width: '0%' },
'100%': { width: '100%' }
}
},
animation: {
timer: 'timer 1s linear'
}
}
},
future: {
hoverOnlyWhenSupported: true
},
plugins: [require('tailwind-scrollbar-hide')]
};