/* 

// ==================================================boilerplate»=====
// 
// CSS for the WeeWX Phenology Skin
// 
// This script is distributed as part of the Phenology Extension to
// WeeWX.  WeeWX is maintained by Tom Keffer, Matthew Wall, and Gary
// Roderick.  This script is maintained by Chuck Rhode although it may
// contain portions copied from Keffer et al. or directly inspired by
// them.
// 
// Copyright 2018—2024 by Chuck Rhode.
// 
// =================================================«boilerplate======

This overrides the weewx seasons.css.  However, as distributed, it is
void and contains no actual overrides.  THIS STYLE SHEET IS
INTENTIONALLY LEFT BLANK.

# ccr . 2025 Jun 15

In *.html, the Phenology Extension loads the seasons.css style sheet
before the phenology.css style sheet.  The phenology.css style sheet
is supposed to be empty unless there is something the Phenology
Extension needs that seasons.css does not provide.  One of those
things is the root variables.  Each style sheet apparently implicitly
defines its own root.  Because phenology.css is loaded last, no root
variables are available for the definitions in seasons.css unless they
are (re)defined here.

*/

:root {
    --background-color:#ffffff;
    --title-background-color:#dddddd;
    --button-background-color:#bbbbbb;
    --element-background-color:#d2e8e8;
    --section-border-color:#aaaaaa;
    --cell-border-color:#dddddd;
    --highlight-color:#4282b4;
    --link-color:#4282b4;
    --visited-color:#4282b4;
    --hover-color:#4282b4;
    --timestamp-color:#aaaaaa;
    --hival-color:#aa4444;
    --loval-color:#4444aa;
    --ok-color:#44aa44;
    --low-color:#aa4444;
    --unknown-color:#dfdfdf;
}
