
* Dark themed cards * Responsiveness fixes * added dark stylesheet option * highlight theme toggle * added highlight function * added highlight themes to assets/css * offline highlight implementation * Fixes for masonry * Revert "added highlight themes to assets/css" This reverts commit ee7cb7675671430697f3a38bd5a56405179e6dd9. * Update `code syntax highlighting` to use jsdelivr CDN * Project card responsiveness fixes * added personal website to readme veedata.github.io * Reverted responsiveness chnages * Minor adjustments Co-authored-by: rohandebsarkar <rohandebsarkar@gmail.com> Co-authored-by: Maruan Al-Shedivat <maruan@genesistherapeutics.ai>
39 lines
1.3 KiB
SCSS
39 lines
1.3 KiB
SCSS
/*******************************************************************************
|
|
* Variables used throughout the theme.
|
|
* To adjust anything, simply edit the variables below and rebuild the theme.
|
|
******************************************************************************/
|
|
|
|
|
|
// Colors
|
|
$red-color: #FF3636 !default;
|
|
$red-color-dark: #B71C1C !default;
|
|
$orange-color: #F29105 !default;
|
|
$blue-color: #0076df !default;
|
|
$blue-color-dark: #00369f !default;
|
|
$cyan-color: #2698BA !default;
|
|
$light-cyan-color: lighten($cyan-color, 25%);
|
|
$green-color: #00ab37 !default;
|
|
$green-color-lime: #B7D12A !default;
|
|
$green-color-dark: #009f06 !default;
|
|
$green-color-light: #ddffdd !default;
|
|
$green-color-bright: #11D68B !default;
|
|
$purple-color: #B509AC !default;
|
|
$light-purple-color: lighten($purple-color, 25%);
|
|
$pink-color: #f92080 !default;
|
|
$pink-color-light: #ffdddd !default;
|
|
$yellow-color: #efcc00 !default;
|
|
|
|
$grey-color: #828282 !default;
|
|
$grey-color-light: lighten($grey-color, 40%);
|
|
$grey-color-dark: #1C1C1D;
|
|
$grey-900: #212529;
|
|
|
|
$white-color: #ffffff !default;
|
|
$black-color: #000000 !default;
|
|
|
|
|
|
// Theme colors
|
|
|
|
$code-bg-color-light: rgba($purple-color, 0.05);
|
|
$code-bg-color-dark: #2c3237 !default;
|