mirror of
https://github.com/jakobkordez/s5_practice.git
synced 2025-05-15 16:20:31 +00:00
37 lines
667 B
JavaScript
37 lines
667 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
darker: "#222831",
|
|
dark: "#393E46",
|
|
primary: {
|
|
light: "#00F4FF",
|
|
DEFAULT: "#00ADB5",
|
|
dark: "#008288",
|
|
darker: "#00656A",
|
|
},
|
|
light: "#EEEEEE",
|
|
}
|
|
},
|
|
container: {
|
|
padding: '2rem',
|
|
center: true,
|
|
screens: {
|
|
DEFAULT: '100%',
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1280px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|
|
|