vault/ui/app/styles/utils/_box-shadow_variables.scss
claire bontempo f18a0643d3
UI: Cleanup scss color variables (#31386)
* update greys to use hds tokens

* update blue vars

* remove unused color vars

* replace remaining colors, add hex codes in commnets

* update kv rgp color

* remove color_variables file and use hds tokens directly
2025-07-29 13:13:08 -07:00

33 lines
1.0 KiB
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
// TODO: lots of inconsistent variation on box-shadow usage. Fix.
// box
$box-shadow: 0 0 0 1px rgba(hsl(0, 0%, 4%), 0.1);
$box-shadow-low:
0 5px 1px -2px rgba(hsl(0, 0%, 4%), 0.12),
0 3px 2px -1px rgba(hsl(0, 0%, 4%), 0);
$box-shadow-middle:
0 8px 4px -4px rgba(hsl(0, 0%, 4%), 0.1),
0 6px 8px -2px rgba(hsl(0, 0%, 4%), 0.05);
$box-shadow-high:
0 12px 5px -7px rgba(hsl(0, 0%, 4%), 0.08),
0 11px 10px -3px rgba(hsl(0, 0%, 4%), 0.1);
$box-shadow-highest:
0 16px 6px -10px rgba(hsl(0, 0%, 4%), 0.06),
0 16px 16px -4px rgba(hsl(0, 0%, 4%), 0.2);
// box-link
$box-link-shadow: 0 0 0 1px var(--token-color-palette-neutral-200);
$box-link-hover-shadow: 0 0 0 1px var(--token-color-palette-neutral-300);
// border
$base-border: 1px solid var(--token-color-palette-neutral-300);
$light-border: 1px solid var(--token-color-palette-neutral-200);
// button specific
$button-box-shadow-standard: 0 3px 1px 0 rgba(hsl(0, 0%, 4%), 0.12);