From 045ce468d3b7cdb83ad3ea18f278f10a6b781075 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 25 Jun 2022 19:52:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=85=20Updates=20colors=20and=20global?= =?UTF-8?q?=20styles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/colors.ts | 3 +++ src/styles/globals.ts | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/styles/globals.ts diff --git a/src/styles/colors.ts b/src/styles/colors.ts index 8881c5a..1a553e5 100644 --- a/src/styles/colors.ts +++ b/src/styles/colors.ts @@ -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; diff --git a/src/styles/globals.ts b/src/styles/globals.ts new file mode 100644 index 0000000..6f03279 --- /dev/null +++ b/src/styles/globals.ts @@ -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;