File tree 5 files changed +6
-19
lines changed
src/gql-components/topnav
5 files changed +6
-19
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ describe('App: Settings', () => {
246
246
cy . get ( '[data-cy="config-legend"]' ) . within ( ( ) => {
247
247
cy . get ( '.bg-gray-50' ) . contains ( 'default' )
248
248
cy . get ( '.bg-teal-100' ) . contains ( 'config' )
249
- cy . get ( '.bg-yellow -100' ) . contains ( 'env' )
249
+ cy . get ( '.bg-orange -100' ) . contains ( 'env' )
250
250
cy . get ( '.bg-red-50' ) . contains ( 'cli' )
251
251
} )
252
252
@@ -289,7 +289,7 @@ describe('App: Settings', () => {
289
289
cy . get ( '[data-cy="config-legend"]' ) . within ( ( ) => {
290
290
cy . get ( '.bg-gray-50' ) . contains ( 'default' )
291
291
cy . get ( '.bg-teal-100' ) . contains ( 'config' )
292
- cy . get ( '.bg-yellow -100' ) . contains ( 'env' )
292
+ cy . get ( '.bg-orange -100' ) . contains ( 'env' )
293
293
cy . get ( '.bg-red-50' ) . contains ( 'cli' )
294
294
} )
295
295
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ describe('<ConfigBadge />', () => {
14
14
cy . mount ( ( ) => (
15
15
< div class = "p-12 children:pb-4" >
16
16
< ConfigBadge label = "Superb" class = "bg-gray-100 text-gray-600" > This is a pretty < pre class = "inline" > great</ pre > badge</ ConfigBadge >
17
- < ConfigBadge label = "Sub-par" class = "bg-yellow -100 text-yellow -600" > A warning would probably go here</ ConfigBadge >
17
+ < ConfigBadge label = "Sub-par" class = "bg-orange -100 text-orange -600" > A warning would probably go here</ ConfigBadge >
18
18
< ConfigBadge label = "So cool" class = "bg-indigo-100 text-indigo-600" > Populated by lorem ipsum</ ConfigBadge >
19
19
< ConfigBadge label = "...Super?" class = "bg-rose-100 text-rose-600" > ...is < a > this</ a > expected?</ ConfigBadge >
20
20
</ div >
Original file line number Diff line number Diff line change 1
1
export const CONFIG_LEGEND_COLOR_MAP = {
2
2
default : 'text-gray-800 bg-gray-50' ,
3
3
config : 'bg-teal-100 text-teal-700' ,
4
- env : 'bg-yellow -100 text-yellow -700' ,
4
+ env : 'bg-orange -100 text-orange -700' ,
5
5
cli : 'bg-red-50 text-red-700' ,
6
6
plugin : 'bg-purple-50 text-purple-700' ,
7
7
} as const
Original file line number Diff line number Diff line change @@ -94,19 +94,6 @@ const customColors = {
94
94
900 : '#320E58' ,
95
95
1000 : '#2F0C52' ,
96
96
} ,
97
- yellow : {
98
- 50 : '#F7F4D2' ,
99
- 100 : '#ECE6A9' ,
100
- 200 : '#E1D984' ,
101
- 300 : '#CBBE41' ,
102
- 400 : '#A18E00' ,
103
- 500 : '#7E6A00' ,
104
- 600 : '#644D00' ,
105
- 700 : '#523800' ,
106
- 800 : '#452900' ,
107
- 900 : '#3D1E00' ,
108
- 1000 : '#391800' ,
109
- } ,
110
97
green : {
111
98
50 : '#F5F5D0' ,
112
99
100 : '#E7E8AB' ,
Original file line number Diff line number Diff line change 53
53
</TopNavListItem >
54
54
55
55
<TopNavListItem
56
- class =" bg-yellow -50 py-8px px-16px"
56
+ class =" bg-orange -50 py-8px px-16px"
57
57
data-cy =" current-hint"
58
58
>
59
59
<div class =" whitespace-nowrap" >
68
68
<span class =" text-gray-600 text-14px" >{{ t('topNav.released') }} {{ versions.current.released }}</span >
69
69
</div >
70
70
<template #suffix >
71
- <span class =" rounded-md bg-yellow -100" >
71
+ <span class =" rounded-md bg-orange -100" >
72
72
<span class =" p-5px text-amber-800" >
73
73
{{ t('topNav.installed') }}
74
74
</span >
You can’t perform that action at this time.
0 commit comments