11
22export type ThemeData = {
3+ background ?: string ,
34 buttonTextColor ?: string ,
5+ actionButtonColor ?: string ,
46 logo ?: string ,
57 tertiary ?: string ,
68 primary ?: ThemeColor ,
@@ -16,10 +18,6 @@ export type ThemeData = {
1618 hideTabs ?: boolean ,
1719 hideWallets ?: boolean ,
1820 }
19- accent : {
20- DEFAULT : string ,
21- hover : string
22- }
2321}
2422
2523
@@ -34,63 +32,10 @@ export type ThemeColor = {
3432 700 : string ;
3533 800 : string ;
3634 900 : string ;
37- 950 : string ;
3835 text : string ,
3936}
4037
4138export type StatusColor = {
4239 Foreground : string ;
4340 Background : string ;
4441}
45-
46- export const THEME_COLORS : { [ key : string ] : ThemeData } = {
47- "default" : {
48- tertiary : '128, 128, 128' ,
49- buttonTextColor : '0, 0, 0' ,
50- logo : '255, 255, 255' ,
51- primary : {
52- DEFAULT : '255, 255, 255' ,
53- '100' : '255, 255, 255' ,
54- '200' : '255, 255, 255' ,
55- '300' : '255, 255, 255' ,
56- '400' : '255, 255, 255' ,
57- '500' : '255, 255, 255' ,
58- '600' : '227, 227, 227' ,
59- '700' : '199, 199, 199' ,
60- '800' : '171, 171, 171' ,
61- '900' : '143, 143, 143' ,
62- '950' : '129, 129, 129' ,
63- 'text' : '230, 230, 230' ,
64- } ,
65- accent : {
66- DEFAULT : '39, 142, 246' ,
67- hover : '35, 128, 222'
68- } ,
69- secondary : {
70- DEFAULT : '32, 59, 70' ,
71- '100' : '87, 152, 178' ,
72- '200' : '70, 130, 154' ,
73- '300' : '58, 106, 126' ,
74- '400' : '61, 61, 61' ,
75- '500' : '51, 51, 51' ,
76- '600' : '46, 46, 46' ,
77- '700' : '38, 38, 38' ,
78- '800' : '34, 34, 34' ,
79- '900' : '27, 27, 27' ,
80- '950' : '18, 18, 18' ,
81- 'text' : '200, 200, 200' ,
82- } ,
83- warning : {
84- Foreground : '255, 201, 74' ,
85- Background : '47, 43, 29' ,
86- } ,
87- error : {
88- Foreground : '255, 97, 97' ,
89- Background : '46, 27, 27' ,
90- } ,
91- success : {
92- Foreground : '89, 224, 125' ,
93- Background : '14, 43, 22' ,
94- } ,
95- } ,
96- }
0 commit comments