diff options
author | Nick Tchayka <nick@booster.cloud> | 2023-08-30 13:07:51 +0100 |
---|---|---|
committer | Nick Tchayka <nick@booster.cloud> | 2023-08-30 13:07:51 +0100 |
commit | 6001682645bbfb52ffb19156e4d2598c8c075b85 (patch) | |
tree | f267ce3ee922ac439e73a9fadb40c8042680d363 /tailwind.config.js | |
parent | 18be2308873c50936c08d254ebb20afe1bdc318a (diff) | |
download | neohaskell.github.io-6001682645bbfb52ffb19156e4d2598c8c075b85.tar.gz neohaskell.github.io-6001682645bbfb52ffb19156e4d2598c8c075b85.tar.bz2 neohaskell.github.io-6001682645bbfb52ffb19156e4d2598c8c075b85.zip |
Update
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 41 |
1 files changed, 35 insertions, 6 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index d625db3..8251c04 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,16 +1,45 @@ /** @type {import('tailwindcss').Config} */ +const colors = require("tailwindcss/colors"); + +const lightColors = { + text: colors.black, + background: colors.yellow[50], + primary: "#7df9ff", + secondary: "#9723c9", + accent: "#fffF00", +}; + +const light = Object.keys(lightColors).reduce((acc, key) => { + acc[`light${key}`] = lightColors[key]; + return acc; +}, {}); + +const darkColors = { + text: colors.white, + background: colors.slate[900], + primary: "#7df9ff", + secondary: "#9723c9", + accent: "#fffF00", +}; + +const dark = Object.keys(darkColors).reduce((acc, key) => { + acc[`dark${key}`] = darkColors[key]; + return acc; +}, {}); + module.exports = { content: ["./src/**/*.{js,jsx,ts,tsx,mdx}"], darkMode: ["class", '[data-theme="dark"]'], theme: { extend: { + boxShadow: { + neoblack: "8px 8px 0px rgba(0,0,0,1)", + neowhite: "8px 8px 0px rgba(255,0,0,1)", + rainbow: `8px 8px 0px ${colors.cyan["400"]}, 16px 16px 0px ${colors.yellow["400"]}, 24px 24px 0px ${colors.violet["400"]}`, + }, colors: { - text: "#000000", - background: "#E3DFF2", - primary: "#7df9ff", - secondary: "#9723c9", - accent: "#fffF00", - darkBg: "#444950", + ...light, + ...dark, }, }, }, |