Skip to content

Commit bc508e7

Browse files
committed
Update LNURL line color to brighter yellow in Address Adoption Rates chart
1 parent 3479318 commit bc508e7

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/components/charts/LineRaceChart/LineRaceChart.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,20 +120,20 @@ export const LineRaceChart: React.FC = () => {
120120
color: new graphic.LinearGradient(0, 0, 1, 0, [
121121
{
122122
offset: 0,
123-
color: 'rgba(253, 156, 51, 0.9)',
123+
color: 'rgba(255, 235, 50, 0.9)',
124124
},
125125
{
126126
offset: 1,
127-
color: 'rgba(253, 156, 51, 0.6)',
127+
color: 'rgba(255, 235, 50, 0.6)',
128128
},
129129
]),
130130
width: 3,
131-
shadowColor: 'rgba(253, 156, 51, 0.3)',
131+
shadowColor: 'rgba(255, 235, 50, 0.3)',
132132
shadowBlur: 10,
133133
shadowOffsetY: 3,
134134
},
135135
itemStyle: {
136-
color: 'rgba(253, 156, 51, 0.9)',
136+
color: 'rgba(255, 235, 50, 0.9)',
137137
borderColor: 'rgba(255, 255, 255, 0.9)',
138138
borderWidth: 2,
139139
},
@@ -142,11 +142,11 @@ export const LineRaceChart: React.FC = () => {
142142
color: new graphic.LinearGradient(0, 0, 0, 1, [
143143
{
144144
offset: 0,
145-
color: 'rgba(253, 156, 51, 0.3)',
145+
color: 'rgba(255, 235, 50, 0.3)',
146146
},
147147
{
148148
offset: 1,
149-
color: 'rgba(253, 156, 51, 0.05)',
149+
color: 'rgba(255, 235, 50, 0.05)',
150150
},
151151
]),
152152
},
@@ -167,13 +167,13 @@ export const LineRaceChart: React.FC = () => {
167167
showSymbol: true,
168168
lineStyle: {
169169
width: 4,
170-
shadowColor: 'rgba(253, 156, 51, 0.6)',
170+
shadowColor: 'rgba(255, 235, 50, 0.6)',
171171
shadowBlur: 15,
172172
},
173173
itemStyle: {
174174
borderColor: '#fff',
175175
borderWidth: 3,
176-
shadowColor: 'rgba(253, 156, 51, 0.5)',
176+
shadowColor: 'rgba(255, 235, 50, 0.5)',
177177
shadowBlur: 10,
178178
},
179179
},
@@ -374,7 +374,7 @@ export const LineRaceChart: React.FC = () => {
374374

375375
const colorMap: Record<string, string> = {
376376
[t('categories.npubs')]: 'rgba(142, 48, 235, 0.9)',
377-
[t('categories.lightningABV')]: 'rgba(253, 156, 51, 0.9)',
377+
[t('categories.lightningABV')]: 'rgba(255, 235, 50, 0.9)',
378378
[t('categories.bolt')]: 'rgba(25, 230, 141, 0.9)',
379379
[t('categories.lightningAndDHT')]: 'rgba(51, 156, 253, 0.9)',
380380
};

0 commit comments

Comments
 (0)