/*
 * CUSTOM CSS OVERRIDES
 *
 * This file is for customizing the appearance of your wiki.
 * Add your CSS rules below to override the default styles.
 *
 * Example - Change primary colors:
 */


:root {
    --primary-color: #975af2 !important;
    --primary-hover: #792bee !important;
    --theme-toggle-strong: #9E6EF2 !important;
    --theme-toggle-h4: #d20073 !important;
    --hover-bg:#e4e4e4 !important;
}

:root[data-theme=dark] {
    --primary-color: #975af2 !important;
    --primary-hover: #a985f5 !important;
    --theme-toggle-strong: #BA9DF7 !important;
    --hover-bg: #373737 !important;
    --theme-toggle-h4: #ff239c !important;
}

h1 {
    color: #975af2 !important;
}

h2 {
    color: #d965e4 !important;
}

h3 {
    color: #e05b9e !important;
}

h4 {
    color: var(--theme-toggle-h4) !important;
}

strong {
    color: var(--theme-toggle-strong) !important;
}

