🦄 Global reusable style work

This commit is contained in:
Alicia Sykes 2022-07-08 21:47:01 +01:00
parent 4ca97314d3
commit 68864366af
2 changed files with 18 additions and 0 deletions

View File

@ -9,6 +9,14 @@ const colors = {
backgroundLighter: '#1a2332',
bgShadowColor: '#0f1620',
fgShadowColor: '#456602',
// Action Colors
info: '#04e4f4',
success: '#20e253',
warning: '#f6f000',
error: '#fca016',
danger: '#f80363',
neutral: '#272f4d',
};
export default colors;

View File

@ -1,4 +1,14 @@
export const TextSizes = {
xSmall: '0.75rem',
small: '1rem',
medium: '1.5rem',
large: '2rem',
xLarge: '3rem',
};
export const TextReset = `
font-size: ${TextSizes.small};
font-family: PTMono, Helvetica, Arial, sans-serif;
font-weight: 400;
font-style: normal;