-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
45 lines (43 loc) · 1.25 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
const { Monomaniac_One, Michroma } = require('next/font/google');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
Monomaniac_One: ['Monomaniac One', 'serif'],
Michroma: ['Michroma', 'sans-serif'],
},
screens: {
'sm-md': { 'min': '540px', 'max': '640px' }, // Custom range between 540px and 640px
},
letterSpacing: {
'custom-wide': '0.75rem',
'custom-wider': '0.75em',
},
borderWidth: {
'0.125rem': '0.125rem', // 2px
'0.25rem': '0.25rem', // 4px
'0.375rem': '0.375rem', // 6px
'0.5rem': '0.5rem', // 8px
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [
function ({ addUtilities }) {
addUtilities({
'.text-shadow-blue': {
textShadow: '2px 2px 4px rgba(59, 130, 246, 0.5)', // Blue shadow
},
}, ['responsive', 'hover']);
},
],
};