This repository was archived by the owner on Nov 26, 2024. It is now read-only.
File tree 7 files changed +77
-1
lines changed
7 files changed +77
-1
lines changed Original file line number Diff line number Diff line change 62
62
--brand-colors-red-red800 : # 64141c ;
63
63
--brand-colors-red-red900 : # 3a0c10 ;
64
64
--brand-colors-purple-purple500 : # 8b45b6 ;
65
+ --brand-colors-violet-violet300 : # CFB5F0 ;
65
66
--brand-colors-yellow-yellow000 : # fffdf8 ;
66
67
--brand-colors-yellow-yellow100 : # fefcde ;
67
68
--brand-colors-yellow-yellow200 : # fff2c5 ;
295
296
--color-network-goerli-inverse : var (--brand-colors-white-white010 );
296
297
--color-network-localhost-default : var (--brand-colors-grey-grey200 );
297
298
--color-network-localhost-inverse : var (--brand-colors-white-white010 );
299
+ --color-network-sepolia-default : var (--brand-colors-violet-violet300 );
300
+ --color-network-sepolia-inverse : var (--brand-colors-white-white010 );
298
301
--color-flask-default : var (--brand-colors-purple-purple500 );
299
302
--color-flask-inverse : var (--brand-colors-white-white010 );
300
303
Original file line number Diff line number Diff line change 297
297
"type" : " color"
298
298
}
299
299
},
300
+ "violet" : {
301
+ "violet300" : {
302
+ "value" : " #CFB5F0" ,
303
+ "description" : " (HEX: #CFB5F0)" ,
304
+ "type" : " color"
305
+ }
306
+ },
300
307
"yellow" : {
301
308
"yellow000" : {
302
309
"value" : " #FFFDF8" ,
1017
1024
"description" : " (white010: #FCFCFC) For elements used on top of networks/localhost/default. Used for text, icon or border" ,
1018
1025
"type" : " color"
1019
1026
}
1027
+ },
1028
+ "sepolia" : {
1029
+ "default" : {
1030
+ "value" : " #CFB5F0" ,
1031
+ "description" : " (violet300: #CFB5F0) For sepolia test network" ,
1032
+ "type" : " color"
1033
+ },
1034
+ "inverse" : {
1035
+ "value" : " #FCFCFC" ,
1036
+ "description" : " (white010: #FCFCFC) For elements used on top of networks/sepolia/default. Used for text, icon or border" ,
1037
+ "type" : " color"
1038
+ }
1020
1039
}
1021
1040
},
1022
1041
"flask" : {
1390
1409
"description" : " (white010: #FCFCFC) For elements used on top of networks/localhost/default. Used for text, icon or border" ,
1391
1410
"type" : " color"
1392
1411
}
1412
+ },
1413
+ "sepolia" : {
1414
+ "default" : {
1415
+ "value" : " #CFB5F0" ,
1416
+ "description" : " (violet300: #CFB5F0) For sepolia test network" ,
1417
+ "type" : " color"
1418
+ },
1419
+ "inverse" : {
1420
+ "value" : " #FCFCFC" ,
1421
+ "description" : " (white010: #FCFCFC) For elements used on top of networks/sepolia/default. Used for text, icon or border" ,
1422
+ "type" : " color"
1423
+ }
1393
1424
}
1394
1425
},
1395
1426
"flask" : {
Original file line number Diff line number Diff line change @@ -304,6 +304,18 @@ describe('Dark Theme Colors', () => {
304
304
) ;
305
305
} ) ;
306
306
307
+ it ( 'js tokens for networks.sepolia.default matches figma tokens networks.sepolia.default' , ( ) => {
308
+ expect ( importableColors . networks . sepolia . default ) . toStrictEqual (
309
+ designTokens . dark . colors . networks . sepolia . default . value ,
310
+ ) ;
311
+ } ) ;
312
+
313
+ it ( 'js tokens for networks.sepolia.inverse matches figma tokens networks.sepolia.inverse' , ( ) => {
314
+ expect ( importableColors . networks . sepolia . inverse ) . toStrictEqual (
315
+ designTokens . dark . colors . networks . sepolia . inverse . value ,
316
+ ) ;
317
+ } ) ;
318
+
307
319
it ( 'js tokens for flask.default matches figma tokens flask.default' , ( ) => {
308
320
expect ( importableColors . flask . default ) . toStrictEqual (
309
321
designTokens . dark . colors . flask . default . value ,
Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ export const colors: ThemeColors = {
88
88
default : '#BBC0C5' ,
89
89
inverse : '#FCFCFC' ,
90
90
} ,
91
+ sepolia : {
92
+ default : '#CFB5F0' ,
93
+ inverse : '#FCFCFC' ,
94
+ } ,
91
95
} ,
92
96
flask : {
93
97
default : '#8B45B6' ,
Original file line number Diff line number Diff line change @@ -304,6 +304,18 @@ describe('Light Theme Colors', () => {
304
304
) ;
305
305
} ) ;
306
306
307
+ it ( 'js tokens for networks.sepolia.default matches figma tokens networks.sepolia.default' , ( ) => {
308
+ expect ( importableColors . networks . sepolia . default ) . toStrictEqual (
309
+ designTokens . light . colors . networks . sepolia . default . value ,
310
+ ) ;
311
+ } ) ;
312
+
313
+ it ( 'js tokens for networks.sepolia.inverse matches figma tokens networks.sepolia.inverse' , ( ) => {
314
+ expect ( importableColors . networks . sepolia . inverse ) . toStrictEqual (
315
+ designTokens . light . colors . networks . sepolia . inverse . value ,
316
+ ) ;
317
+ } ) ;
318
+
307
319
it ( 'js tokens for flask.default matches figma tokens flask.default' , ( ) => {
308
320
expect ( importableColors . flask . default ) . toStrictEqual (
309
321
designTokens . light . colors . flask . default . value ,
Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ export const colors: ThemeColors = {
88
88
default : '#BBC0C5' ,
89
89
inverse : '#FCFCFC' ,
90
90
} ,
91
+ sepolia : {
92
+ default : '#CFB5F0' ,
93
+ inverse : '#FCFCFC' ,
94
+ } ,
91
95
} ,
92
96
flask : {
93
97
default : '#8B45B6' ,
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ export interface ThemeColors {
249
249
networks : {
250
250
goerli : {
251
251
/**
252
- * {string} networks.;goerliDefault - For goerli test network colored elements
252
+ * {string} networks.goerli.default - For goerli test network colored elements
253
253
*/
254
254
default : string ;
255
255
/**
@@ -267,6 +267,16 @@ export interface ThemeColors {
267
267
*/
268
268
inverse : string ;
269
269
} ;
270
+ sepolia : {
271
+ /**
272
+ * {string} networks.sepolia.default - For sepolia test network colored elements
273
+ */
274
+ default : string ;
275
+ /**
276
+ * {string} networks.sepolia.inverse - For elements used on top of networks/sepolia/default
277
+ */
278
+ inverse : string ;
279
+ } ;
270
280
} ;
271
281
flask : {
272
282
/**
You can’t perform that action at this time.
0 commit comments