File: /var/www/soreal.space/wp-content/themes/soreal/tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./*.php',
'./**/*.php',
'./**/*.html',
'./**/*.js',
],
theme: {
extend: {
container: {
padding: '1rem',
screens: {
'2xl': '1216px',
},
},
colors: {
primary: '#5D5FEF',
primaryHover: '#595997',
secondary: '#3A86FF',
'black-900': '#1B1D21',
'balck-800': '#0F1419',
'black-700': '#2E2F41',
'gray-400': '#555555',
'black-600': '#536471',
'gray-700': '#636872',
'gray-800': '#77808B',
'custom-dark': '#0F1419',
white2: '#EFF3F4'
},
lineHeight: {
'70': '70px',
}
}
},
plugins: [],
}