-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (47 loc) · 1.14 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
// @ts-check
/** @type {import("tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
prefix: 'tw-',
content: ['./src/**/*.{html,js,jsx,ts,tsx,css,scss,sass}'],
darkMode: 'class',
theme: {
extend: {
animation: {
shrink: 'shrink 1.5s infinite',
expand: 'expand 1.5s infinite',
'gradient-foreground-anim-1': 'gradient-foreground-1 8s infinite'
},
colors: {
primary: {
DEFAULT: '#F96F6F',
50: '#FEDDDD',
100: '#FDD1D1',
200: '#FCB8B8',
300: '#FBA0A0',
400: '#FA8787',
500: '#F96F6F',
600: '#F74848',
700: '#F62121',
800: '#E40A0A',
900: '#BD0808'
},
bg: '#fff',
'dark-bg': '#000000',
text: '#222',
'dark-text': '#bbb',
border: '#e5e5e5',
'dark-border': '#333333',
'spotify-green': '#1db954',
code: {
green: '#b5f4a5',
yellow: '#ffe484',
purple: '#d9a9ff',
red: '#ff8383',
blue: '#93ddfd',
white: '#fff'
}
}
}
},
plugins: []
};