-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 697 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 697 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
import tailwindcss from 'tailwindcss';
import autoprefixer from 'autoprefixer';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
dropShadow: {
green: '0 0 10rem #29c26f',
},
},
colors: {
primary: {
200: '#ffffff', // almost white
400: '#B64D80', // dark pink
500: '#CD6899', // light pink
600: '#99235C', // wine
},
grayscale: {
25: '#E4E2DD', // beige
50: '#CD6899',
100: '#efefef',
200: '#FDFDFF',
950: '#823A5D',
},
},
},
plugins: [tailwindcss, autoprefixer],
};