forked from howznguyen/howz.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (55 loc) · 1.13 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
// const colors = require("tailwindcss/colors");
const typography = require("@tailwindcss/typography");
const aspectRatio = require("@tailwindcss/aspect-ratio");
module.exports = {
darkMode: 'class',
mode: 'jit',
future: {
removeDeprecatedGapUtilities: true,
},
content: [
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
spacing : {
content: '68rem',
},
colors: {
pink : {
50: '#FDF2F8',
100: '#FCE8F3',
200: '#FBCFE8',
300: '#F9A8D4',
400: '#F472B6',
500: '#EC4899',
600: '#DB2777',
700: '#BE185D',
800: '#9D174D',
900: '#831843',
},
brown: {
50: '#fdf8f6',
100: '#f2e8e5',
200: '#eaddd7',
300: '#e0cec7',
400: '#d2bab0',
500: '#bfa094',
600: '#a18072',
700: '#977669',
800: '#846358',
900: '#43302b',
},
dark: '#222222',
primary: '#3E54AC',
}
}
},
variants: {
extend: {},
},
plugins: [
typography,
aspectRatio,
],
}