my-website/tailwind.config.js

32 lines
716 B
JavaScript
Raw Normal View History

2024-02-15 20:31:36 +02:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
2024-02-16 23:36:28 +02:00
extend: {
colors: {
'black' : '#0B0C0E',
'dark-gray' : '#3C3D3E',
'light-gray' : '#C7D0D9',
'off-white' : '#F4F7FA',
},
//in general we should use rem instead of pixels for sizes
fontSize: {
'heading-display' : '150px',
'heading1' : '91px',
'heading2' : '60px',
'heading3' : '40px',
'heading4' : '27px',
'para-large' : '27px',
'para-medium' : '18px',
'para-small' : '14px',
},
},
2024-02-15 20:31:36 +02:00
},
plugins: [],
}