forked from astroport-fi/astroport-lbp-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
44 lines (39 loc) · 2.03 KB
/
theme.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
:root {
/* Colors */
--theme-white: #FFFFFF;
--theme-dark-yellow: #FFB300;
--theme-light-yellow: #FFE54C;
--theme-dark-blue: #0E0D44;
--theme-medium-blue: #17388F;
--theme-light-blue-90: #3864D8E6; /* 90% transparency */
--theme-green-90: #36CAB0E6; /* 90% transparency */
--theme-red-90: #ED6374E6; /* 90% transparency */
/* Wallet controls */
--theme-connected-chain-id-background-color: var(--theme-dark-yellow);
/* Generic styles */
--theme-token-sale-heading-color: var(--theme-white);
--theme-background-color: var(--theme-dark-blue);
--theme-card-background-color: var(--theme-medium-blue);
--theme-card-border-color: var(--theme-card-background-color);
--theme-secondary-text-opacity: 0.6;
--theme-primary-button-background-color: var(--theme-dark-yellow);
--theme-primary-button-text-color: var(--theme-dark-blue);
/* Swap card form */
--theme-from-amount-max-button-color: var(--theme-dark-yellow);
/*
Swap card overlay - displayed after clicking swap button, has various states that tracks
transaction from extension prompt through success/failure
*/
--theme-swap-card-overlay-waitingForExtension-background-color: var(--theme-light-blue-90);
--theme-swap-card-overlay-pending-background-color: var(--theme-light-blue-90);
--theme-swap-card-overlay-complete-background-color: var(--theme-green-90);
--theme-swap-card-overlay-error-background-color: var(--theme-red-90);
--theme-swap-card-overlay-complete-continue-button-background-color: var(--theme-medium-blue);
--theme-swap-card-overlay-error-continue-button-background-color: #A43D4A;
/* Historical price card/chart */
--theme-historical-price-card-option-button-background-color: var(--theme-dark-yellow);
--theme-historical-price-card-option-button-text-color: var(--theme-medium-blue);
--theme-historical-price-chart-line-color: var(--theme-dark-yellow);
--theme-historical-price-chart-area-gradient-from-color: var(--theme-dark-yellow);
--theme-historical-price-chart-area-gradient-to-color: var(--theme-light-yellow);
}