feat(frontend): neutral colors

This commit is contained in:
setop 2024-03-17 22:55:05 +01:00
parent a004e10e8a
commit 6e141decfe
2 changed files with 24 additions and 22 deletions

View File

@ -102,6 +102,7 @@
:maxSize="maxSize" :maxSize="maxSize"
/> />
</label> </label>
<!-- piece of code to manage instance colors
<div class="field flex flex-col"> <div class="field flex flex-col">
<label class="" for="primary-color">{{ t("Primary Color") }}</label> <label class="" for="primary-color">{{ t("Primary Color") }}</label>
<o-input <o-input
@ -120,6 +121,7 @@
id="secondary-color" id="secondary-color"
/> />
</div> </div>
-->
<o-field :label="t('Allow registrations')"> <o-field :label="t('Allow registrations')">
<o-switch v-model="settingsToWrite.registrationsOpen"> <o-switch v-model="settingsToWrite.registrationsOpen">
<p <p

View File

@ -11,30 +11,30 @@ module.exports = {
"frama-violet": "#725794", "frama-violet": "#725794",
"frama-orange": "#cc4e13", "frama-orange": "#cc4e13",
"mbz-yellow": { "mbz-yellow": {
DEFAULT: "#FFD599", DEFAULT: "#f2f2f2",
50: "#FFFFFF", 50: "#d9d9d9",
100: "#FFFFFF", 100: "#e5e5e5",
200: "#FFFFFF", 200: "#f2f2f2",
300: "#FFF7EB", 300: "#ffffff",
400: "#FFE6C2", 400: "#cccccc",
500: "#FFD599", 500: "#bfbfbf",
600: "#FFBE61", 600: "#b3b3b3",
700: "#FFA729", 700: "#a6a6a6",
800: "#F08D00", 800: "#999999",
900: "#B86C00", 900: "#8c8c8c",
}, },
"mbz-yellow-alt": { "mbz-yellow-alt": {
DEFAULT: "#FAB12D", DEFAULT: "#f2f2f2",
50: "#FEF4E0", 50: "#d9d9d9",
100: "#FEECCC", 100: "#e5e5e5",
200: "#FDDDA5", 200: "#f2f2f2",
300: "#FCCF7D", 300: "#ffffff",
400: "#FBC055", 400: "#cccccc",
500: "#FAB12D", 500: "#bfbfbf",
600: "#E99806", 600: "#b3b3b3",
700: "#B37404", 700: "#a6a6a6",
800: "#7C5103", 800: "#999999",
900: "#452D02", 900: "#8c8c8c",
}, },
"mbz-purple": { "mbz-purple": {
DEFAULT: "#424056", DEFAULT: "#424056",