-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_theme-colors.scss
30 lines (25 loc) · 1.14 KB
/
_theme-colors.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* WeBWorK Online Homework Delivery System
* Copyright © 2000-2021 The WeBWorK Project, https://github.com/openwebwork
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of either: (a) the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any later
* version, or (b) the "Artistic License" which comes with this package.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the
* Artistic License for more details.
*/
// Include bootstrap scss functions (so you can manipulate colors, SVGs, calc, etc)
@import "../../node_modules/bootstrap/scss/functions";
// Theme colors
$primary: #062a56;
$info: darken(#007dc3,1%);
// Link colors
$link-color: lighten($primary,15%);
$link-hover-color: lighten($link-color,10%);
// Webwork logo background color in the banner
$ww-logo-background-color: $primary;
// Achievment level bar
$ww-achievement-level-color: #35889a;