-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (62 loc) · 1.71 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'custom-dark-gray': 'rgb(15, 15, 15)',
},
fontFamily: {
quicksand: ['Quicksand', 'sans-serif'],
},
boxShadow: {
'text-lg': '0 2px 4px rgba(0, 0, 0, 0.10)',
'text-xl': '0 4px 6px rgba(0, 0, 0, 0.10)',
'text-2xl': '0 10px 15px rgba(0, 0, 0, 0.10)',
},
textShadow: {
'sm': '0 1px 2px rgba(0, 0, 0, 0.05)',
'default': '0 2px 4px rgba(0, 0, 0, 0.10)',
'md': '0 3px 6px rgba(0, 0, 0, 0.15)',
'lg': '0 10px 15px rgba(0, 0, 0, 0.20)',
'xl': '0 20px 25px rgba(0, 0, 0, 0.25)',
'2xl': '0 25px 50px rgba(0, 0, 0, 0.25)',
},
screens: {
xs: "330px",
},
},
},
variants: {},
plugins: [
require("@tailwindcss/forms"),
require("@headlessui/tailwindcss"),
function ({ addUtilities }) {
const newUtilities = {
'.text-shadow-sm': {
textShadow: '0 1px 2px rgba(0, 0, 0, 0.05)',
},
'.text-shadow': {
textShadow: '0 2px 4px rgba(0, 0, 0, 0.10)',
},
'.text-shadow-md': {
textShadow: '0 3px 6px rgba(0, 0, 0, 0.15)',
},
'.text-shadow-lg': {
textShadow: '0 10px 15px rgba(0, 0, 0, 0.20)',
},
'.text-shadow-xl': {
textShadow: '0 20px 25px rgba(0, 0, 0, 0.25)',
},
'.text-shadow-2xl': {
textShadow: '0 25px 50px rgba(0, 0, 0, 0.25)',
},
}
addUtilities(newUtilities, ['responsive', 'hover'])
}
],
};