-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
71 lines (67 loc) · 1.98 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
65
66
67
68
69
70
71
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin');
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
colors: {
primary: '#FF8427',
secondary: '#42485D',
background: '#080010',
blue: '#1fb6ff',
purple: '#7e5bef',
'purple-light': '#3a3253',
'purple-medium': 'rgb(160,160,255)',
'primary-medium': 'rgba(160,160,255,0.08)',
pink: '#ff49db',
'orange-light': '#FF7700',
'orange-dark': '#E04D01',
white: '#EEEEEE',
'blue-light': '#2A2550',
'blue-dark': '#251D3A',
green: '#13ce66',
yellow: '#ffc82c',
'gray-dark': '#273444',
gray: '#ccd6f6',
'gray-light': '#d3dce6',
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
extend: {
spacing: {
'8xl': '96rem',
'9xl': '128rem',
},
borderRadius: {
'4xl': '2rem',
},
transitionProperty: {
height: 'height',
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
'.scrollbar-hide': {
/* IE and Edge */
'-ms-overflow-style': 'none',
/* Firefox */
'scrollbar-width': 'none',
/* Safari and Chrome */
'&::-webkit-scrollbar': {
display: 'none',
},
},
});
}),
],
};