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;