-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
screens: {
'sm': '640px',
'md': '768px',
'mdLarge': '874px',
'lg': '1024px',
'lgLarge': '1190px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
colors: {
'bunting': '#1E206D',
'peach': '#FFEEDB',
'paua': '#24036A',
'chardonnay': '#FFCA8F',
'oyster': '#D9FBFF',
'meteorite': '#3B1C7B',
black: {
900: '#000000',
800: "#111111",
700: "#1E1E1E",
},
},
fontFamily: {
'Supreme': ['Supreme', 'sans-serif'],
'Stretch': ['Stretch', 'cursive']
},
width: {
'112': '28rem', /* 448px */
'128': '32rem', /* 512px */
'144': '36rem', /* 576px */
'160': '40rem', /* 640px */
'176': '44rem', /* 704px */
'192': '48rem', /* 768px */
'208': '52rem', /* 832px */
'224': '56rem', /* 896px */
'240': '60rem', /* 960px */
'256': '64rem', /* 1024px */
}
},
},
plugins: [
require('tailwind-scrollbar')({ nocompatible: true }),
],
}