html[data-theme="light"] {
    --custom-color-gentle-sky: #c3d1e2;
    --custom-color-soft-pink: #e1c5c5;
}

html[data-theme="dark"] {
    --custom-color-gentle-sky: #2a3348;
    --custom-color-soft-pink: #563434;
}

.has-background-gentle-sky {
    background-color: var(--custom-color-gentle-sky);
}

.has-background-soft-pink {
    background-color: var(--custom-color-soft-pink);
}

.is-white {
    color: white;
}
