/**
 * GD shared color palette
 * Consume these variables in any widget CSS instead of hard-coding hex values.
 *
 * Override at theme level:
 *   --gd-dark-blueish-grey   dark text / background  (default #3B4F5B)
 *   --gd-grey                neutral border / surface (default #e5e7eb)
 *   --gd-blue                brand blue              (default #0073aa)
 *   --gd-white               white                   (default #ffffff)
 */

:root {
    --gd-dark-blueish-grey: #3B4F5B;
    --gd-grey:              #e5e7eb;
    --gd-blue:              #6EC1E4;
    --gd-white:             #ffffff;
}
