/* Default theme (brown) */
:root{
  --theme-bg: #8b4513;
  --theme-text: #111111;
  --theme-accent: #8b4513;
}

.bkbrown { background-color: var(--theme-bg)!important; }
.brown   { color: var(--theme-accent); }      /* accent */
.themecolor { color: var(--theme-text); }     /* readable */

.color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--swatch);
    border: 2px solid #e5e5e5;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
