1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/tailwind.config.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-10-03 20:52:15 +02:00
/** @type {import('tailwindcss').Config} */
const tailwindConfig = {
2023-08-01 17:44:08 +02:00
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./blog/**/*.{js,ts,jsx,tsx}",
2023-08-01 17:44:08 +02:00
],
darkMode: "class",
theme: {
extend: {
colors: {
black: "#181818",
gray: {
DEFAULT: "#333333",
2024-01-28 01:56:47 +01:00
dark: "#b7c0c9",
},
yellow: {
2024-01-28 01:56:47 +01:00
DEFAULT: "#006cff",
dark: "#00aeff",
},
},
boxShadow: {
2024-01-28 01:56:47 +01:00
dark: "0px 0px 2px 2px rgba(0, 0, 0, 0.25)",
light: "0px 0px 2px 2px rgba(0, 0, 0, 0.10)",
darkFlag: "0px 1px 10px hsla(0, 0%, 100%, 0.2)",
lightFlag: "0px 1px 10px rgba(0, 0, 0, 0.25)",
},
fontFamily: {
headline: "'Montserrat', 'Arial', 'sans-serif'",
2021-11-08 15:10:26 +01:00
},
typography: {
DEFAULT: {
css: {
2021-12-04 15:52:51 +01:00
fontFamily: "'Montserrat', 'Arial', 'sans-serif'",
2021-11-08 15:10:26 +01:00
a: {
textDecoration: "none",
"&:hover": {
textDecoration: "underline",
fontWeight: 400,
},
},
},
},
},
},
},
plugins: [require("@tailwindcss/typography")],
}
2022-10-03 20:52:15 +02:00
module.exports = tailwindConfig