Skip to content

Commit 24b4ff3

Browse files
authored
fix(brand-band): Revert brand band gradient end stop to token value (#4644)
* revert brand band gradient end stop to token value * update demo styles background value in brand band
1 parent 8fd86d0 commit 24b4ff3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ui/components/brand-band/base/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
top: 0;
4545
width: 100%;
4646
height: $brand-band-scrim-height;
47-
background-image: linear-gradient(to bottom, $brand-background-primary-transparent 60%, #b0c4df);
47+
background-image: linear-gradient(to bottom, $brand-background-primary-transparent 60%, $brand-background-primary);
4848
}
4949

5050
/**

ui/components/brand-band/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import React, { Component } from 'react';
55
import classNames from 'classnames';
66

7-
let tokenValue = 'rgb(176, 196, 223)';
7+
let tokenValue = '#eef4ff'; // BRAND_BACKGROUND_PRIMARY from design-tokens/aliases/color-palettes.yml
88

99
export const BrandBand = props => (
1010
<div

0 commit comments

Comments
 (0)