mirror of
https://github.com/Lissy93/web-check.git
synced 2025-06-19 03:16:45 +02:00
💅 Updates colors and global styles
This commit is contained in:
parent
12500657d5
commit
045ce468d3
@ -1,11 +1,14 @@
|
|||||||
|
|
||||||
const colors = {
|
const colors = {
|
||||||
primary: '#9fef00',
|
primary: '#9fef00',
|
||||||
|
primaryLighter: '#cff97a',
|
||||||
textColor: '#ffffff',
|
textColor: '#ffffff',
|
||||||
textColorSecondary: '#a4b1cd',
|
textColorSecondary: '#a4b1cd',
|
||||||
background: '#141d2b',
|
background: '#141d2b',
|
||||||
backgroundDarker: '#111927',
|
backgroundDarker: '#111927',
|
||||||
backgroundLighter: '#1a2332',
|
backgroundLighter: '#1a2332',
|
||||||
|
bgShadowColor: '#0f1620',
|
||||||
|
fgShadowColor: '#456602',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default colors;
|
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…
x
Reference in New Issue
Block a user