/*
 * Purpose: Yellowish green theme based on nice green color used at the
 *          early days working on this...
 * Author:  Magnus Johansson <ma@arachne.se>
 * Created: July 2022
 *
 * Origin generated by:
 * https://www.w3schools.com/w3css/w3css_color_generator.asp
 *
 * Base color: #608f33
 *
 * To get RGB values, a useful converter can be found here:
 * https://www.w3schools.com/colors/colors_converter.asp
 *
 * The !important statements are part of the generated source and may be
 * needed for a consistent look in some cases.
 */
.w3-theme-l5 {color:#000 !important; background-color:#f5faf1 !important}
.w3-theme-l4 {color:#000 !important; background-color:#dfeed1 !important}
.w3-theme-l3 {color:#000 !important; background-color:#bfdda2 !important}
.w3-theme-l2 {color:#000 !important; background-color:#9fcd74 !important}
.w3-theme-l1 {color:#fff !important; background-color:#7fbc45 !important}
.w3-theme-d1 {color:#fff !important; background-color:#56802e !important}
.w3-theme-d2 {color:#fff !important; background-color:#4c7229 !important}
.w3-theme-d3 {color:#fff !important; background-color:#436424 !important}
.w3-theme-d4 {color:#fff !important; background-color:#39551f !important}
.w3-theme-d5 {color:#fff !important; background-color:#30471a !important}

.w3-theme-light {color:#000 !important; background-color:#f5faf1 !important}
.w3-theme-dark {color:#fff !important; background-color:#30471a !important}
.w3-theme-action {color:#fff !important; background-color:#30471a !important}

.w3-theme {color:#fff !important; background-color:#608f33 !important}
.w3-text-theme {color:#608f33 !important}
.w3-border-theme {border-color:#608f33 !important}

.w3-hover-theme:hover {color:#fff !important; background-color:#608f33 !important}
.w3-hover-text-theme:hover {color:#608f33 !important}
.w3-hover-border-theme:hover {border-color:#608f33 !important}

.w3-theme-gradient {
  color:#fff !important;
  background-color: #608f33;
  /* background-color: rgb(96, 143, 51); */
  /* gradient steps: d2 - theme - l1 - l2 */
  background-image: radial-gradient(circle,
                                    rgba(76,114,41,1) 0%,
                                    rgba(96,143,51,1) 60%,
                                    rgba(127,188,69,1) 90%,
                                    rgba(159,205,116,1) 100%);
  /* yet another green color from the early days
    background-color: #06a82d;
    background: radial-gradient(circle,
                                rgba(6,168,45,1) 2%,
                                rgba(5,173,70,1) 11%,
                                rgba(7,127,65,1) 72%);
    background: linear-gradient(75.7deg,
                                rgb(34, 126, 34) 3.8%,
                                rgb(99, 162, 17) 87.1%);
   */
}

.w3-theme-gradient.main-container {
  background-color: #dfeed1;
  /* background-color: rgb(223, 238, 209); */
  /* gradient steps: l3 - l1 */
  background-image: linear-gradient(200deg,
                                    rgba(191,221,162,0.0) 70%,
                                    rgba(127,188,69,1) 100%);
}

.w3-theme-gradient.sitemap-container {
  background-color: #7fbc45;
  /* background-color: rgb(127, 188, 69); */
  /* gradient steps: l1 - theme - d2 */
  background-image: radial-gradient(circle,
                                    rgba(127,188,69,1.0) 20%,
                                    rgba(96,143,51,1.0) 70%,
                                    rgba(76,114,41,1.0) 90%);
}

.w3-theme-gradient-light {
  color:#000 !important;
  background-color: #9fcd74;
  /* background-color: rgb(159, 205, 116); */
  /* gradient steps: theme - l2 */
  background-image: radial-gradient(circle,
                                    rgba(96,143,51,1) 0%,
                                    rgba(159,205,116,1) 90%);
}

a {
  /*
   * The decoration color can be set separately with e.g.:
   * text-decoration-color: green !important;
   */
  /* color: #608f33 !important; */
  /* color: #608f33; */
  color: #56802e;
}

a:focus {
  /* focus can be set using tab key, and may be blue by default */
  /* outline: 2px solid #5d9e5b; */
}

.card .w3-theme.card-title {
  background-color: #cda !important;
  background-color: rgba(204,221,170,0.5) !important;
  color: #363 !important;
}

