mirror of
https://github.com/3lLobo/zkAuth.git
synced 2026-01-14 14:57:58 -05:00
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const plugin = require('tailwindcss/plugin')
|
|
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
scale: {
|
|
500: '5',
|
|
300: '3',
|
|
},
|
|
animation: {
|
|
'spin-bezier': 'myspin 1s cubic-bezier(0.9, 0.26, 0.97, 1) infinite',
|
|
},
|
|
keyframes: {
|
|
wiggle: {
|
|
'0%, 100%': { transform: 'rotate(-3deg)' },
|
|
'50%': { transform: 'rotate(3deg)' },
|
|
},
|
|
},
|
|
colors: {
|
|
blocqpurple: '#B88DFF',
|
|
neonPurple: 'rgba(111,76,255,1.0)',
|
|
navy: '#0b3a53',
|
|
'navy-muted': '#244e66',
|
|
aqua: '#69c4cd',
|
|
'aqua-muted': '#9ad4db',
|
|
ipfsgray: '#b7bbc8',
|
|
'ipfsgray-muted': '#d9dbe2',
|
|
charcoal: '#34373f',
|
|
'charcoal-muted': '#7f8491',
|
|
ipfsred: '#ea5037',
|
|
'ipfsred-muted': '#f36149',
|
|
ipfsyellow: '#f39021',
|
|
'ipfsyellow-muted': '#f9a13e',
|
|
ipfsteal: '#378085',
|
|
'ipfsteal-muted': '#439a9d',
|
|
ipfsgreen: '#0cb892',
|
|
'ipfsgreen-muted': '#0aca9f',
|
|
snow: '#edf0f4',
|
|
'snow-muted': '#f7f8fa',
|
|
link: '#117eb3',
|
|
'washed-blue': '#F0F6FA',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
require('@tailwindcss/line-clamp'),
|
|
require('@tailwindcss/aspect-ratio'),
|
|
require('@tailwindcss/forms'),
|
|
plugin(function ({ addUtilities }) {
|
|
addUtilities({
|
|
'.scrollbar-hide': {
|
|
/* IE and Edge */
|
|
'-ms-overflow-style': 'none',
|
|
|
|
/* Firefox */
|
|
'scrollbar-width': 'none',
|
|
|
|
/* Safari and Chrome */
|
|
'&::-webkit-scrollbar': {
|
|
display: 'none',
|
|
},
|
|
},
|
|
})
|
|
}),
|
|
plugin(function ({ addComponents }) {
|
|
addComponents({})
|
|
}),
|
|
],
|
|
}
|