2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00
website/tailwind.config.js

37 lines
948 B
JavaScript
Raw Permalink Normal View History

2022-12-13 22:31:32 +01:00
/** @type {import('tailwindcss').Config} */
const tailwindConfig = {
2021-12-28 16:06:58 +01:00
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
2021-12-28 16:06:58 +01:00
],
darkMode: "class",
2021-10-24 05:48:06 +02:00
theme: {
extend: {
screens: {
xs: "380px",
2021-10-24 05:48:06 +02:00
},
colors: {
black: "#212121",
success: "#45C85A",
error: "#C84545",
2021-10-24 05:48:06 +02:00
},
boxShadow: {
dark: "0px 1px 10px hsla(0, 0%, 100%, 0.2)",
light: "0px 1px 10px rgba(0, 0, 0, 0.25)",
darkFlag: "0px 1px 10px hsla(0, 0%, 100%, 0.2)",
lightFlag: "0px 1px 10px rgba(0, 0, 0, 0.25)",
green: "0 0 0 2px #27b05e",
success: "0 2px 8px rgba(70, 200, 92, 0.3)",
error: "0 2px 8px rgba(200, 69, 69, 0.5)",
2021-10-24 05:48:06 +02:00
},
fontFamily: {
2021-12-28 16:06:58 +01:00
headline: "'Montserrat', 'Arial', 'sans-serif'",
paragraph: "'Roboto', 'Arial', 'sans-serif'",
},
},
2021-10-24 05:48:06 +02:00
},
plugins: [],
2021-10-24 05:48:06 +02:00
}
2022-12-13 22:31:32 +01:00
module.exports = tailwindConfig