-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
101 lines (96 loc) · 2.76 KB
/
tailwind.config.js
File metadata and controls
101 lines (96 loc) · 2.76 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/** @type {import('tailwindcss').Config} */
const {nextui} = require("@nextui-org/react");
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
zIndex: {
'100': '100',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'embloy-green-blue-gradient': 'linear-gradient(to right, #99F7CB, #99FFFF)',
'embloy-green-blue-gradient-dark': 'linear-gradient(to right, #00FF88, #00FFFF)',
},
colors: {
'embloy-green': '#99F7CB',
'embloy-greenish': '#9DE0CF',
'embloy-blue': '#99FFFF',
'embloy-purple-darkest': '#1B012D',
'embloy-purple-blueish': '#8E69F8',
'embloy-purple': '#3F3356',
'embloy-purple-light': '#987ACF',
'embloy-purple-lighter': '#C9B3FF',
'embloy-gray-darkest': '#191919',
'embloy-gray-darker': '#2c3949',
'embloy-gray-dark': '#647488',
'embloy-gray': '#9ca3ae',
'embloy-gray-light': '#c0c4cb',
'embloy-gray-lighter': '#e4e6eb',
'embloy-gray-lightest': '#f1f5f9',
'barbera': '#D2C3FC',
'amarone': '#9482ba',
'rubeno': '#5B4E76',
'nebbiolo': '#3E3454',
'biferno': '#312844',
'aglianico': '#2B243C',
'chianti': '#211B2E',
'ciliegiolo': '#110E1B',
'primitivo': '#DF3840',
'zinfandel': '#FF8C92',
'fragole': '#c7511b',
'lagunaveneta': '#002f86',
'golfotrieste': '#1a4590',
'golfonapoli': '#5CA7FF',
'leidoveneta': '#FDE961',
'etna': '#D1D1D1',
'vesuvio': '#787878',
'ischia': '#374151',
'ferrara': '#f1f5f9',
'pompei': '#fbfafb',
'lugana': '#43C265',
'custoza': '#a3f5cc',
},
spacing : {
'10%': '10%',
'50%': '50%',
'70%': '70%',
'75%': '75%',
'80%': '80%',
'90%': '90%',
'93%': '93%',
'98%': '98%',
'2px': '2px',
'3px': '3px',
'4px': '4px',
'5px': '5px',
'9px': '9px',
'15px': '15px',
'20px': '20px',
'45px': '45px',
'1000px': '1000px',
'1200px': '1200px',
'1250px': '1250px',
'1275px': '1275px',
'1300px': '1300px',
'1500px': '1500px',
}
},
},
plugins: [nextui()],
}