
:root {
    --gray-100: #eeeeee;
    --gray-200: #cccccc;
    --gray-300: #aaaaaa;
    --gray-400: #a1a1a1;
    --gray-500: #999999;
    --gray-600: #777777;
    --gray-700: #555555;
    --gray-800: #333333;
    --gray-900: #111111;
    /*--color-primary: #F29579;*/
    --color-primary: #e98466;
    --color-primary-black: #e98466;
    --color-primary-white: #faac94;
    --color-primary-white-extra: #ffe0d7;
    
    /*Simple.css*/

    /* Set sans-serif & mono fonts */
    --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
      "Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica,
      "Helvetica Neue", sans-serif;
    --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    --standard-border-radius: 5px;
  
    /* Default (light) theme */
    --bg: #fff;
    --accent-bg: #f5f7ff;
    --text: #212121;
    --text-light: #585858;
    --border: #898EA4;
    --accent: #141414;
    --accent-hover: #000;
    --accent-text: var(--bg);
    --code: #d81b60;
    --preformatted: #444;
    --marked: #ffdd33;
    --disabled: #efefef;
}

button {
    cursor: pointer;
    background-color: var(--accent);
    border: 0;
    border-radius: 4px;
    padding: 8px;
    color: #fff;
}
a {
    color: var(--text);
}