80 lines
2.4 KiB
JavaScript
80 lines
2.4 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
const plugin = require('tailwindcss/plugin')
|
|
|
|
module.exports = {
|
|
mode: 'jit',
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', ...defaultTheme.fontFamily.sans],
|
|
inter: ['Inter', 'sans-serif', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
fontSize: {
|
|
xs: ['0.75rem', { lineHeight: '1.25' }],
|
|
sm: ['0.875rem', { lineHeight: '1.25' }],
|
|
base: ['1rem', { lineHeight: '1.25', letterSpacing: '-0.01em' }],
|
|
lg: ['1.125rem', { lineHeight: '1.25', letterSpacing: '-0.01em' }],
|
|
xl: ['1.25rem', { lineHeight: '1.25', letterSpacing: '-0.01em' }],
|
|
'2xl': ['1.5rem', { lineHeight: '1.33', letterSpacing: '-0.01em' }],
|
|
'3xl': ['1.88rem', { lineHeight: '1.33', letterSpacing: '-0.01em' }],
|
|
'4xl': ['2.25rem', { lineHeight: '1.25', letterSpacing: '-0.02em' }],
|
|
'5xl': ['3rem', { lineHeight: '1.25', letterSpacing: '-0.02em' }],
|
|
'6xl': ['3.75rem', { lineHeight: '1.2', letterSpacing: '-0.02em' }],
|
|
},
|
|
screens: {
|
|
xs: '480px',
|
|
},
|
|
borderWidth: {
|
|
3: '3px',
|
|
},
|
|
minWidth: {
|
|
36: '9rem',
|
|
44: '11rem',
|
|
56: '14rem',
|
|
60: '15rem',
|
|
72: '18rem',
|
|
80: '20rem',
|
|
},
|
|
maxWidth: {
|
|
'8xl': '88rem',
|
|
'9xl': '96rem',
|
|
},
|
|
zIndex: {
|
|
60: '60',
|
|
},
|
|
boxShadow: {
|
|
DEFAULT: '0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.02)',
|
|
md: '0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.02)',
|
|
lg: '0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.01)',
|
|
xl: '0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.01)',
|
|
},
|
|
outline: {
|
|
blue: '2px solid rgba(0, 112, 244, 0.5)',
|
|
},
|
|
colors: {
|
|
oper: {
|
|
50: '#f7e8e7',
|
|
100: '#cc756d',
|
|
200: '#c45e55',
|
|
300: '#bb473d',
|
|
400: '#b33024',
|
|
500: '#aa190c',
|
|
600: '#99170b',
|
|
700: '#88140a',
|
|
800: '#771208',
|
|
900: '#660f07'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/line-clamp')
|
|
]
|
|
}
|