diff --git a/gui/package.json b/gui/package.json index 80a78d5d34..afeeff9422 100644 --- a/gui/package.json +++ b/gui/package.json @@ -82,7 +82,7 @@ "prettier": "^2.7.1", "pretty-quick": "^3.1.3", "tailwind-gradient-mask-image": "^1.0.0", - "tailwindcss": "^3.0.23", + "tailwindcss": "^3.3.1", "vite": "^4.0.3" } } diff --git a/gui/public/i18n/en/translation.ftl b/gui/public/i18n/en/translation.ftl index 0f58669a09..b537a06dc9 100644 --- a/gui/public/i18n/en/translation.ftl +++ b/gui/public/i18n/en/translation.ftl @@ -337,6 +337,7 @@ settings-general-interface-feedback_sound = Feedback sound settings-general-interface-feedback_sound-description = This option will play a sound when a reset is triggered settings-general-interface-feedback_sound-label = Feedback sound settings-general-interface-feedback_sound-volume = Feedback sound volume +settings-general-interface-theme = Color theme settings-general-interface-lang = Select language settings-general-interface-lang-description = Change the default language you want to use. settings-general-interface-lang-placeholder = Select the language to use diff --git a/gui/src/components/commons/BaseModal.tsx b/gui/src/components/commons/BaseModal.tsx index ff6e1caf90..e2861ac19e 100644 --- a/gui/src/components/commons/BaseModal.tsx +++ b/gui/src/components/commons/BaseModal.tsx @@ -17,14 +17,16 @@ export function BaseModal({ overlayClassName={ props.overlayClassName || classNames( - 'fixed top-0 right-0 left-0 bottom-0 flex flex-col justify-center items-center w-full h-full bg-background-90 bg-opacity-60 z-20' + 'fixed top-0 right-0 left-0 bottom-0 flex flex-col justify-center', + 'items-center w-full h-full bg-background-90 bg-opacity-60 z-20' ) } className={ props.className || classNames( - props.className as string, - 'items-center focus:ring-transparent focus:ring-offset-transparent focus:outline-transparent outline-none bg-background-60 p-6 rounded-lg text-white' + 'items-center focus:ring-transparent focus:ring-offset-transparent', + 'focus:outline-transparent outline-none bg-background-60 p-6 rounded-lg', + 'text-background-10' ) } > diff --git a/gui/src/components/commons/Checkbox.tsx b/gui/src/components/commons/Checkbox.tsx index 71a635d2a4..2727d0b824 100644 --- a/gui/src/components/commons/Checkbox.tsx +++ b/gui/src/components/commons/Checkbox.tsx @@ -44,7 +44,7 @@ export function CheckBox({
-