/* 客製化變數名稱設定：請與 _variables 裡設定類似的文字 */
:root {
    --theme-primary-color: #009FE8;
    --theme-main-light: color-mix(in srgb, var(--theme-primary-color), white 55%);
    --theme-main-dark: color-mix(in srgb, var(--theme-primary-color), black 40%);

    --theme-color-danger: red;
    --theme-color-dark: rgb(63, 63, 63);
    --theme-common-sgray: orange;
    --theme-common-lgray: rgb(200, 255, 0);
    --theme-common-mgray: rgb(0, 255, 68);
    --theme-common-gray: rgb(0, 208, 255);
    --theme-common-dgray: rgb(0, 115, 255);
    --theme-common-black: rgb(115, 0, 255);
    --theme-common-white: rgb(255, 0, 221);
    --theme-input-border: rgb(255, 0, 111);
    --theme-main-bg: rgb(44, 96, 42);
}