Skip to content

Commit a1a2390

Browse files
committed
Add interlaced palette
Signed-off-by: David Pordomingo <[email protected]>
1 parent 5cc50c4 commit a1a2390

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
### Changed
66

77
- Superset was updated to v0.34.1, which brings some bug fixes. See more details in [their changelog](https://github.com/apache/incubator-superset/blob/master/CHANGELOG.md#0341-20190927-1822-0000) ([#278](https://github.com/src-d/sourced-ui/issues/278)).
8+
- Make the current source{d} palettes accessible for color blindness impairments ([#302](https://github.com/src-d/sourced-ui/issues/302))
9+
- Convert the current `srcdMain` and `srcdAll` palettes into interlaced ones, and rename the old gradient ones as `srcdMainGradient` and `srcdAllGradient` ([#305](https://github.com/src-d/sourced-ui/pull/305))
810

911
### Internal
1012

1113
- Reduce the size of docker image ([#272](https://github.com/src-d/sourced-ui/issues/272))
12-
- Make the current source{d} palettes accessible for color blindness impairments ([#302](https://github.com/src-d/sourced-ui/issues/302))
1314

1415
### Fixed
1516

srcd/superset/assets/src/customization/srcdColorsCategorical.js

+20-20
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ export const scheme = [
1414
label: 'source{d} main colors',
1515
colors: [
1616
palette.royalDeep,
17-
palette.royal,
18-
palette.royalLightDeep,
19-
palette.royalLight,
2017
palette.coralDeep,
21-
palette.coral,
22-
palette.coralLightDeep,
23-
palette.coralLight,
2418
palette.limeDeep,
19+
palette.royal,
20+
palette.coral,
2521
palette.lime,
22+
palette.royalLightDeep,
23+
palette.coralLightDeep,
2624
palette.limeLightDeep,
25+
palette.royalLight,
26+
palette.coralLight,
2727
palette.limeLight,
2828
],
2929
},
@@ -32,26 +32,26 @@ export const scheme = [
3232
label: 'source{d} all colors + middle gradient',
3333
colors: [
3434
palette.royalDeep,
35-
palette.royalMiddle,
36-
palette.royal,
37-
palette.royalLightDeep,
38-
palette.royalLight,
3935
palette.coralDeep,
40-
palette.coralMiddle,
41-
palette.coral,
42-
palette.coralLightDeep,
43-
palette.coralLight,
4436
palette.limeDeep,
45-
palette.limeMiddle,
46-
palette.lime,
47-
palette.limeLightDeep,
48-
palette.limeLight,
4937
palette.vanila,
50-
palette.vanilaLight,
5138
palette.navy,
52-
palette.navyLight,
5339
palette.gray,
40+
palette.royalMiddle,
41+
palette.coralMiddle,
42+
palette.limeMiddle,
43+
palette.vanilaLight,
44+
palette.navyLight,
5445
palette.grayLight,
46+
palette.royal,
47+
palette.coral,
48+
palette.lime,
49+
palette.royalLightDeep,
50+
palette.coralLightDeep,
51+
palette.limeLightDeep,
52+
palette.royalLight,
53+
palette.coralLight,
54+
palette.limeLight,
5555
],
5656
},
5757
{

0 commit comments

Comments
 (0)