mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-04-05 15:54:34 +00:00
25 lines
No EOL
494 B
JavaScript
25 lines
No EOL
494 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'bg-pink': '#FF478B',
|
|
'bg-blue': '#298FF5',
|
|
'bg-black': '#1E1E1E',
|
|
'bg-gray': '#484848'
|
|
},
|
|
screens: {
|
|
// 'sm': '640px',
|
|
// 'md': '768px',
|
|
// 'lg': '1024px',
|
|
'xl': '1000px',
|
|
'2xl': '1800px',
|
|
},
|
|
container: {
|
|
center: true,
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |