mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 04:20:10 +01:00
Adjust calendar colors to our theme
Fix dark mode
This commit is contained in:
parent
0a369cd181
commit
5975bfa428
1 changed files with 26 additions and 0 deletions
|
@ -115,6 +115,32 @@ html[data-theme="dark"] {
|
||||||
--base0f: #ff66c2; // Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?>
|
--base0f: #ff66c2; // Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fullcalendar light mode
|
||||||
|
html, [data-theme="light"] {
|
||||||
|
--fc-page-bg-color: var(--background);
|
||||||
|
--fc-event-bg-color: var(--background);
|
||||||
|
--fc-event-text-color: var(--link);
|
||||||
|
--fc-event-border-color: var(--link);
|
||||||
|
--fc-button-bg-color: var(--background);
|
||||||
|
--fc-button-border-color: var(--link);
|
||||||
|
--fc-button-text-color: var(--link);
|
||||||
|
--fc-button-hover-bg-color: var(--meta);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fullcalendar dark mode
|
||||||
|
html, [data-theme="dark"] {
|
||||||
|
--fc-page-bg-color: var(--background);
|
||||||
|
--fc-event-bg-color: var(--link);
|
||||||
|
--fc-event-border-color: var(--link);
|
||||||
|
--fc-event-border-color: var(--link);
|
||||||
|
--fc-today-bg-color: rgba(181, 125, 255, 0.15);
|
||||||
|
--fc-neutral-text-color: var(--fc-border-color);
|
||||||
|
--fc-button-bg-color: var(--background);
|
||||||
|
--fc-button-border-color: var(--link);
|
||||||
|
--fc-button-text-color: var(--link);
|
||||||
|
--fc-button-hover-bg-color: var(--meta);
|
||||||
|
}
|
||||||
|
|
||||||
// Monokai Theme
|
// Monokai Theme
|
||||||
//html[data-theme="dark"] {
|
//html[data-theme="dark"] {
|
||||||
// --base00: #272822; // Default Background
|
// --base00: #272822; // Default Background
|
||||||
|
|
Loading…
Reference in a new issue