From 76392db85c20fa2eae9c20c12422cfff9fadfa76 Mon Sep 17 00:00:00 2001 From: job Date: Fri, 10 Mar 2023 14:36:53 +0100 Subject: [PATCH 1/2] Update 'domme_mensen_css/tailwind.config.js' --- domme_mensen_css/tailwind.config.js | 32 +++++++++++++++++------------ 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/domme_mensen_css/tailwind.config.js b/domme_mensen_css/tailwind.config.js index 55ea491..84c7efa 100644 --- a/domme_mensen_css/tailwind.config.js +++ b/domme_mensen_css/tailwind.config.js @@ -15,32 +15,38 @@ module.exports = { variants: { display: ["group-hover"] }, + fontFamily: { 'sans': ['roboto', 'sans-serif']}, extend: { colors: { transparent: 'transparent', current: 'currentColor', - 'intermate-yellow': '#f8a90c', - 'intermate-yellow-hover': '#b87e08', + 'intermate-yellow': 'hsla(40, 94%, 51%, 1)', + 'intermate-yellow-hover': 'hsla(40, 92%, 38%, 1)', 'intermate-shadow' : 'hsla(0, 0%, 75%, 0.5)', }, - backgroundImage: { - 'ballen' : "url('.perseus/static/balls.svg')" - } + }, }, plugins: [require("daisyui")], daisyui: { - darkTheme: "light", - themes: ["light", "dark", "night", - { - intermate: { - primary: "#a991f7", - secondary: "#f6d860", + darkTheme: "intermate_dark", + themes: [ { + intermate_light: { + primary: "hsla(40, 94%, 51%, 1)", /*This Intermate yellow*/ + "primary-focus": "hsla(40, 92%, 38%, 1)", /*This Intermate yellow on hover, in other words focus*/ + secondary: "hsla(140, 92%, 38%, 1)", /*Needs to be changed*/ accent: "#37cdbe", neutral: "#3d4451", - "base-100": "#fccf47", - "intermate-yellow": "#f8a90c", + "base-100": "hsla(0, 0%, 100%, 1)", + }, + intermate_dark: { + primary: "hsla(40, 94%, 51%, 1)", + "primary-focus": "hsla(40, 92%, 38%, 1)", + secondary: "hsla(140, 20%, 38%, 1)", /*Needs to be changed*/ + accent: "hsla(40, 92%, 38%, 1)", + neutral: "hsla(40, 92%, 38%, 1)", + "base-100": "hsla(0, 0%, 0%, 1)", }, }, ], From 98ad8048785096df3b604fec5fe139c2f1ecd8ea Mon Sep 17 00:00:00 2001 From: job Date: Fri, 10 Mar 2023 14:37:46 +0100 Subject: [PATCH 2/2] Update 'domme_mensen_css/tailwind.css' --- domme_mensen_css/tailwind.css | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/domme_mensen_css/tailwind.css b/domme_mensen_css/tailwind.css index f1e26a5..3fa9557 100644 --- a/domme_mensen_css/tailwind.css +++ b/domme_mensen_css/tailwind.css @@ -1,18 +1,18 @@ -@tailwind base; - -@tailwind components; - -@tailwind utilities; - - -@layer components { - .intermate-navbar { - @apply navbar bg-intermate-yellow shadow-md shadow-intermate-shadow; - } - .intermate-footer { - @apply footer p-10 bg-intermate-yellow text-white justify-around; - } - .intermate-navbutton-effect { - @apply block hover:text-intermate-yellow-hover transition-all hover:scale-110 ease-in-out; - } +@tailwind base; + +@tailwind components; + +@tailwind utilities; + + +@layer components { + .intermate-navbar { + @apply navbar bg-primary; + } + .intermate-footer { + @apply footer p-10 bg-primary text-white justify-around; + } + .intermate-navbutton-effect { + @apply block hover:text-primary-focus transition-all hover:scale-110 ease-in-out; + } } \ No newline at end of file