mirror of
https://github.com/Lissy93/web-check.git
synced 2025-01-23 14:49:16 +01:00
💅 Updates colors and global styles
This commit is contained in:
parent
12500657d5
commit
045ce468d3
@ -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
14
src/styles/globals.ts
Normal 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;
|
Loading…
Reference in New Issue
Block a user