💅 Updates colors and global styles

This commit is contained in:
Alicia Sykes 2022-06-25 19:52:16 +01:00
parent 12500657d5
commit 045ce468d3
2 changed files with 17 additions and 0 deletions

View File

@ -1,11 +1,14 @@
const colors = {
primary: '#9fef00',
primaryLighter: '#cff97a',
textColor: '#ffffff',
textColorSecondary: '#a4b1cd',
background: '#141d2b',
backgroundDarker: '#111927',
backgroundLighter: '#1a2332',
bgShadowColor: '#0f1620',
fgShadowColor: '#456602',
};
export default colors;

14
src/styles/globals.ts Normal file
View File

@ -0,0 +1,14 @@
import { createGlobalStyle } from 'styled-components';
import PTMono from 'assets/fonts/PTMono.ttf';
export const GlobalStyles = createGlobalStyle`
@font-face {
font-family: PTMono;
font-style: normal;
font-weight: 400;
src: url(${PTMono});
}
body { font-family: PTMono; }
`;
export default GlobalStyles;