mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-04-05 15:54:34 +00:00
24 lines
484 B
JavaScript
24 lines
484 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"bg-pink": "#FF478B",
|
|
"bg-blue": "#92cff5",
|
|
"bg-black": "#121b2c",
|
|
"bg-gray": "#262626",
|
|
},
|
|
screens: {
|
|
xs: "370px",
|
|
},
|
|
container: {
|
|
center: true,
|
|
},
|
|
gridTemplateColumns: {
|
|
fluid: "repeat(auto-fill, minmax(300px, 1fr))",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|