mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-05-19 09:54:59 +00:00
flasky flasky
This commit is contained in:
parent
e6e2714a95
commit
40baf07fe1
36 changed files with 1035 additions and 1365 deletions
44
static/css/scss/_variables.scss
Normal file
44
static/css/scss/_variables.scss
Normal file
|
@ -0,0 +1,44 @@
|
|||
$black: #151515;
|
||||
$white: #e8e3e3;
|
||||
|
||||
$red: #B66467;
|
||||
$yellow: #D9BC8C;
|
||||
$green: #8C977D;
|
||||
$blue: #8DA3B9;
|
||||
//$dblue: #222c45;
|
||||
$purple: #A988B0;
|
||||
|
||||
$primary: $green;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Mona-Sans';
|
||||
src: url('../fonts/Mona-Sans.woff2') format('woff2 supports variations'),
|
||||
url('../fonts/Mona-Sans.woff2') format('woff2-variations');
|
||||
font-weight: 200 900;
|
||||
font-stretch: 75% 125%;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Hubot-Sans';
|
||||
src: url('../fonts/Hubot-Sans.woff2') format('woff2 supports variations'),
|
||||
url('../fonts/Hubot-Sans.woff2') format('woff2-variations');
|
||||
font-weight: 200 900;
|
||||
font-stretch: 75% 125%;
|
||||
}
|
||||
|
||||
$font-header: "Mona-Sans", sans-serif;
|
||||
$font-body: "Hubot-Sans", sans-serif;
|
||||
|
||||
@function hexToRGB($hex) {
|
||||
@return red($hex), green($hex), blue($hex);
|
||||
}
|
||||
|
||||
:root {
|
||||
--red: #{hexToRGB($red)};
|
||||
--yellow: #{hexToRGB($yellow)};
|
||||
--green: #{hexToRGB($green)};
|
||||
--blue: #{hexToRGB($blue)};
|
||||
--purple: #{hexToRGB($purple)};
|
||||
}
|
||||
|
||||
// I want to use this somewhere
|
||||
//background: linear-gradient(200deg, rgba($primary, 0.5) 1.7%, rgba($black, 0) 30%);
|
Loading…
Add table
Add a link
Reference in a new issue