feat: update primary and neutral colors to arcab blue #000fff

pull/678/head
SuBroXz11 1 month ago
parent 5c7b61a098
commit f153c89085

@ -118,7 +118,7 @@
} }
[contenteditable="true"]:focus { [contenteditable="true"]:focus {
outline: 1px dashed #291334; outline: 1px dashed #0000ff;
outline-offset: 6px; outline-offset: 6px;
} }
@ -135,9 +135,9 @@
height: 3rem; height: 3rem;
padding-left: 1rem; padding-left: 1rem;
padding-right: 1rem; padding-right: 1rem;
border: 1px solid #291334; border: 1px solid #0000ff;
border-radius: 1.9rem; border-radius: 1.9rem;
background-color: #291334; background-color: #0000ff;
color: #ffffff; color: #ffffff;
font-size: 1rem; font-size: 1rem;
font-weight: 500; font-weight: 500;
@ -160,7 +160,7 @@
} }
.print-button:focus-visible { .print-button:focus-visible {
outline: 2px solid #291334; outline: 2px solid #0000ff;
outline-offset: 2px; outline-offset: 2px;
} }

@ -1,25 +1,23 @@
module.exports = { module.exports = {
plugins: [ plugins: [require("daisyui")],
require('daisyui')
],
daisyui: { daisyui: {
themes: [ themes: [
{ {
docuseal: { docuseal: {
'color-scheme': 'light', "color-scheme": "light",
primary: '#e4e0e1', primary: "#000fff",
secondary: '#ef9fbc', secondary: "#ef9fbc",
accent: '#eeaf3a', accent: "#eeaf3a",
neutral: '#291334', neutral: "#000fff",
'base-100': '#faf7f5', "base-100": "#faf7f5",
'base-200': '#efeae6', "base-200": "#efeae6",
'base-300': '#e7e2df', "base-300": "#e7e2df",
'base-content': '#291334', "base-content": "#291334",
'--rounded-btn': '1.9rem', "--rounded-btn": "1.9rem",
'--tab-border': '2px', "--tab-border": "2px",
'--tab-radius': '.5rem' "--tab-radius": ".5rem",
} },
} },
] ],
} },
} };

Loading…
Cancel
Save