|
| 1 | +:root { |
| 2 | + --color-white100: #ffffff; |
| 3 | + --color-grey10: #1a1a1a; |
| 4 | + --color-grey20: #333333; |
| 5 | + --color-grey25: #404040; |
| 6 | + --color-grey30: #4d4d4d; |
| 7 | + --color-grey35: #595959; |
| 8 | + --color-grey40: #666666; |
| 9 | + --color-grey45: #737373; |
| 10 | + --color-grey55: #8c8c8c; |
| 11 | + --color-grey65: #a6a6a6; |
| 12 | + --color-grey80: #cccccc; |
| 13 | + --color-grey85: #d9d9d9; |
| 14 | + --color-grey95: #f2f2f2; |
| 15 | + --color-coral: #ef4056; |
| 16 | + --color-amber: #fcb643; |
| 17 | + --color-brandPocket: #ef4056; |
| 18 | + --font-sans-serif: 'Graphik Web', 'Helvetica Neue', Helvetica, Arial, Sans-Serif; |
| 19 | + |
| 20 | + --color-canvas: #ffffff; |
| 21 | + --color-text-primary: #15141a; |
| 22 | + --color-divider: #f0f0f4; |
| 23 | + --color-button-neutral: #f0f0f4; |
| 24 | + --color-button-neutral-text: #15141a; |
| 25 | + |
| 26 | + @media (prefers-color-scheme: dark) { |
| 27 | + --color-canvas: #42414d; |
| 28 | + --color-text-primary: #fbfbfe; |
| 29 | + --color-divider: #52525e; |
| 30 | + --color-button-neutral: #2b2a33; |
| 31 | + --color-button-neutral-text: #fbfbfe; |
| 32 | + } |
| 33 | +} |
| 34 | + |
| 35 | +html { |
| 36 | + font-size: 16px; |
| 37 | + font-family: var(--font-sans-serif); |
| 38 | +} |
| 39 | + |
| 40 | +body { |
| 41 | + margin: 0px !important; |
| 42 | + width: 400px; |
| 43 | + height: 100%; |
| 44 | + padding: 0.5rem 0.5rem 1rem; |
| 45 | + background-color: var(--color-canvas); |
| 46 | + color: var(--color-text-primary); |
| 47 | +} |
| 48 | + |
| 49 | +svg { |
| 50 | + shape-rendering: geometricPrecision; |
| 51 | +} |
| 52 | + |
| 53 | +.icon { |
| 54 | + width: 24px; |
| 55 | + height: 24px; |
| 56 | + margin-right: 0.625rem; |
| 57 | +} |
| 58 | + |
| 59 | +hr { |
| 60 | + background: var(--color-divider); |
| 61 | + border: none; |
| 62 | + height: 1px; |
| 63 | + margin: 0.5rem 0; |
| 64 | + display: block; |
| 65 | +} |
| 66 | + |
| 67 | +button { |
| 68 | + background-color: var(--color-button-neutral); |
| 69 | + color: var(--color-button-neutral-text); |
| 70 | + border-radius: 0.25rem; |
| 71 | + border-color: transparent; |
| 72 | + padding: 0.25rem 0.5rem; |
| 73 | + display: flex; |
| 74 | + align-items: center; |
| 75 | + cursor: pointer; |
| 76 | +} |
0 commit comments