Removed hard-coded color codes, reference SCSS variables
This commit is contained in:
14
src/styles/color-pallet.scss
Normal file
14
src/styles/color-pallet.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
|
||||
/* Core Pallet */
|
||||
$background: #0b1021;
|
||||
$ascent: #0875c3;
|
||||
|
||||
/* Action Colors */
|
||||
$transparent-black: #0000008a;
|
||||
|
||||
/* Modified Colors */
|
||||
$bg-with-opacity: rgba($background, 0.8);
|
||||
$header-color: darken($background, 5%);
|
||||
$dark-ascent: darken($ascent, 50%);
|
||||
$ascent-with-opacity: rgba($ascent, 0.8);
|
||||
22
src/styles/global-styles.scss
Normal file
22
src/styles/global-styles.scss
Normal file
@@ -0,0 +1,22 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
|
||||
|
||||
|
||||
html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #282a32;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
|
||||
p, a, span, div, input {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
Reference in New Issue
Block a user