From c5f496752b355834f5f66a230d2b6de3208e8349 Mon Sep 17 00:00:00 2001 From: biou Date: Sun, 26 Jul 2020 13:47:26 +0200 Subject: [PATCH] fix(a11y): new color contrasts, BREAKING CHANGE --- styles/_littlefoot-variables.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/styles/_littlefoot-variables.scss b/styles/_littlefoot-variables.scss index 38bae4414..bd0710736 100644 --- a/styles/_littlefoot-variables.scss +++ b/styles/_littlefoot-variables.scss @@ -75,12 +75,12 @@ $button-left-margin: 0.2em !default; // Margin between the button and the text t $button-right-margin: 0.1em !default; // Margin between the button and the text to its right $button-vertical-offset: -0.1em !default; // Pushes the buttons along the vertical axis to align it with text as desired -$button-color: rgb(110, 110, 110) !default; // Background color of the button -$button-hovered-color: $button-color !default; // Background color of the button when being hovered -$button-activating-color: $button-color !default; // Background color of the button when being clicked -$button-active-color: $button-color !default; // Background color of the button when active -$button-standard-opacity: 0.2 !default; // Opacity for when the button is just sittin' there -$button-hovered-opacity: 0.5 !default; // Opacity for when the button is being hovered over +$button-color: dimgray !default; // Background color of the button +$button-hovered-color: blue !default; // Background color of the button when being hovered +$button-activating-color: $button-hovered-color !default; // Background color of the button when being clicked +$button-active-color: purple !default; // Background color of the button when active +$button-standard-opacity: 1 !default; // Opacity for when the button is just sittin' there +$button-hovered-opacity: 1 !default; // Opacity for when the button is being hovered over $button-activating-opacity: $button-hovered-opacity !default; // Opacity for when the button is being clicked $button-active-opacity: 1 !default; // Opacity for when the button is active $button-active-style-delay: 0.1s !default; // Delay before applying .active styles; this can be used to match to the popover activation transition