2016-12-19 22:07:04 +00:00
|
|
|
$base-font-size: 12;
|
2016-05-11 19:31:17 +00:00
|
|
|
|
|
|
|
//colors
|
|
|
|
$p5js-pink: #ed225d;
|
2020-04-21 21:49:02 +00:00
|
|
|
$processing-blue: #007BBB;
|
2020-04-22 21:45:48 +00:00
|
|
|
$p5js-active-pink: #f10046;
|
2016-05-11 19:31:17 +00:00
|
|
|
$white: #fff;
|
|
|
|
$black: #000;
|
2016-10-12 16:08:12 +00:00
|
|
|
$yellow: #F5DC23;
|
2018-07-30 16:20:57 +00:00
|
|
|
$orange: #ffa500;
|
|
|
|
$red: #ff0000;
|
|
|
|
$lightsteelblue: #B0C4DE;
|
|
|
|
$dodgerblue: #1E90FF;
|
2020-04-21 21:49:02 +00:00
|
|
|
// $icon-hover-color: #333;
|
2019-04-17 21:05:55 +00:00
|
|
|
$p5-contrast-pink: #FFA9D9;
|
2016-05-11 19:31:17 +00:00
|
|
|
|
2020-04-22 20:52:47 +00:00
|
|
|
$border-color: #B5B5B5;
|
|
|
|
$outline-color: #0F9DD7;
|
|
|
|
|
2020-04-21 21:49:02 +00:00
|
|
|
// Grayscale values
|
|
|
|
$lightest: #FFF; // primary
|
|
|
|
$lighter: #FBFBFB;
|
2019-05-24 09:41:06 +00:00
|
|
|
|
2020-04-21 21:49:02 +00:00
|
|
|
$light: #F0F0F0; // primary
|
|
|
|
$medium-light: #D9D9D9;
|
|
|
|
$middle-light: #A6A6A6;
|
|
|
|
|
2020-04-22 20:52:47 +00:00
|
|
|
// $middle-gray: #7D7D7D; // primary
|
|
|
|
$middle-gray: #747474; // primary
|
2020-04-21 21:49:02 +00:00
|
|
|
$middle-dark: #666;
|
|
|
|
$medium-dark: #4D4D4D;
|
|
|
|
|
|
|
|
$dark: #333; // primary
|
|
|
|
$darker: #1C1C1C;
|
|
|
|
$darkest: #000;
|
2019-05-24 09:41:06 +00:00
|
|
|
|
2016-09-13 18:15:46 +00:00
|
|
|
$themes: (
|
|
|
|
light: (
|
2016-10-18 02:57:29 +00:00
|
|
|
logo-color: $p5js-pink,
|
2020-04-27 20:48:55 +00:00
|
|
|
logo-background-color: $lightest,
|
2020-04-21 21:49:02 +00:00
|
|
|
heavy-text-color: $darker,
|
|
|
|
primary-text-color: $dark,
|
|
|
|
secondary-text-color: $medium-dark,
|
|
|
|
inactive-text-color: $middle-dark,
|
|
|
|
dropzone-text-color: $dark,
|
|
|
|
modal-button-color: $dark,
|
|
|
|
background-color: $lighter,
|
|
|
|
button-background-color: $light,
|
2020-04-28 21:31:27 +00:00
|
|
|
button-secondary-background-color: $medium-light,
|
2016-09-13 18:15:46 +00:00
|
|
|
button-color: $black,
|
2020-04-21 21:49:02 +00:00
|
|
|
button-border-color: $middle-light,
|
2020-04-28 22:01:25 +00:00
|
|
|
toolbar-button-color: $dark,
|
2020-04-22 20:52:47 +00:00
|
|
|
toolbar-button-background-color: $medium-light,
|
2016-09-13 18:15:46 +00:00
|
|
|
button-background-hover-color: $p5js-pink,
|
2020-04-22 21:45:48 +00:00
|
|
|
button-background-active-color: $p5js-active-pink,
|
2020-04-22 20:52:47 +00:00
|
|
|
button-nav-inactive-color: $middle-gray,
|
2020-04-22 22:31:04 +00:00
|
|
|
button-hover-color: $lightest,
|
|
|
|
button-active-color: $lightest,
|
2020-04-22 20:52:47 +00:00
|
|
|
modal-background-color: $light,
|
|
|
|
preferences-button-background-color: $medium-light,
|
|
|
|
modal-border-color: $middle-light,
|
|
|
|
icon-color: $middle-gray,
|
|
|
|
icon-hover-color: $darker,
|
2020-04-22 22:31:04 +00:00
|
|
|
icon-toast-hover-color: $lightest,
|
2016-09-13 18:15:46 +00:00
|
|
|
shadow-color: rgba(0, 0, 0, 0.16),
|
2020-04-22 20:52:47 +00:00
|
|
|
console-background-color: $light,
|
2020-04-22 22:31:04 +00:00
|
|
|
console-color: $lightest,
|
2020-04-21 21:49:02 +00:00
|
|
|
console-header-background-color: $medium-light,
|
|
|
|
console-header-color: $darker,
|
2020-04-27 21:30:55 +00:00
|
|
|
console-info-background-color: #5276B7,
|
|
|
|
console-warn-background-color: #996B00,
|
|
|
|
console-debug-background-color: #0071AD,
|
|
|
|
console-error-background-color: #D11518,
|
2020-04-24 22:34:26 +00:00
|
|
|
ide-border-color: $medium-light,
|
2020-04-21 21:49:02 +00:00
|
|
|
editor-gutter-color: $lighter,
|
|
|
|
file-hover-color: $light,
|
|
|
|
file-selected-color: $medium-light,
|
2020-04-22 20:52:47 +00:00
|
|
|
input-text-color: $dark,
|
2020-04-24 00:25:39 +00:00
|
|
|
input-background-color: $lightest,
|
2020-04-27 20:48:55 +00:00
|
|
|
input-secondary-background-color: $lightest,
|
2020-04-22 20:52:47 +00:00
|
|
|
input-border-color: $middle-light,
|
|
|
|
search-background-color: $lightest,
|
|
|
|
search-clear-background-color: $light,
|
|
|
|
search-hover-text-color: $lightest,
|
|
|
|
search-hover-background-color: $medium-dark,
|
|
|
|
keyboard-shortcut-color: $middle-gray,
|
2017-10-11 16:56:44 +00:00
|
|
|
nav-hover-color: $p5js-pink,
|
2020-04-21 21:49:02 +00:00
|
|
|
nav-border-color: $middle-light,
|
2019-04-17 21:05:55 +00:00
|
|
|
error-color: $p5js-pink,
|
2020-04-22 21:45:48 +00:00
|
|
|
table-row-stripe-color: $medium-light,
|
2020-04-29 22:34:37 +00:00
|
|
|
codefold-icon-open: url(../images/triangle-arrow-down.svg?byUrl),
|
|
|
|
codefold-icon-closed: url(../images/triangle-arrow-right.svg?byUrl),
|
2019-05-22 13:38:24 +00:00
|
|
|
|
2020-04-22 20:52:47 +00:00
|
|
|
primary-button-color: $lightest,
|
2019-10-03 04:41:57 +00:00
|
|
|
primary-button-background-color: $p5js-pink,
|
|
|
|
|
2020-04-22 22:31:04 +00:00
|
|
|
table-button-color: $lightest,
|
2020-04-22 21:45:48 +00:00
|
|
|
table-button-background-color: $middle-gray,
|
2020-04-22 22:31:04 +00:00
|
|
|
table-button-active-color: $lightest,
|
2020-01-15 11:23:46 +00:00
|
|
|
table-button-background-active-color: #00A1D3,
|
2020-04-22 22:31:04 +00:00
|
|
|
table-button-hover-color: $lightest,
|
2019-11-25 12:53:44 +00:00
|
|
|
table-button-background-hover-color: $p5js-pink,
|
|
|
|
|
2020-04-22 21:45:48 +00:00
|
|
|
progress-bar-background-color: $middle-gray,
|
|
|
|
progress-bar-active-color: $p5js-active-pink,
|
2019-11-10 18:42:26 +00:00
|
|
|
|
2019-05-22 13:38:24 +00:00
|
|
|
form-title-color: rgba(51, 51, 51, 0.87),
|
2020-04-24 00:25:39 +00:00
|
|
|
form-secondary-title-color: $medium-dark,
|
2019-05-24 09:41:06 +00:00
|
|
|
form-input-text-color: $dark,
|
2020-04-21 21:49:02 +00:00
|
|
|
form-input-placeholder-text-color: $middle-light,
|
|
|
|
form-navigation-options-color: $middle-dark
|
2016-09-13 18:15:46 +00:00
|
|
|
),
|
|
|
|
dark: (
|
2016-10-18 02:57:29 +00:00
|
|
|
logo-color: $p5js-pink,
|
2020-04-27 20:48:55 +00:00
|
|
|
logo-background-color: $lightest,
|
2020-04-21 21:49:02 +00:00
|
|
|
heavy-text-color: $lightest,
|
2020-04-22 22:31:04 +00:00
|
|
|
primary-text-color: $lightest,
|
2019-04-02 19:10:49 +00:00
|
|
|
dropzone-text-color: $black,
|
2020-04-22 22:31:04 +00:00
|
|
|
modal-button-color: $lightest,
|
|
|
|
secondary-text-color: $medium-light,
|
|
|
|
inactive-text-color: $middle-light,
|
|
|
|
background-color: $darker,
|
2020-04-28 21:31:27 +00:00
|
|
|
button-background-color: $dark,
|
|
|
|
button-secondary-background-color: $medium-dark,
|
|
|
|
button-color: $light,
|
|
|
|
button-border-color: $middle-dark,
|
2020-04-28 22:01:25 +00:00
|
|
|
toolbar-button-color: $lightest,
|
2020-04-22 22:31:04 +00:00
|
|
|
toolbar-button-background-color: $medium-dark,
|
2016-09-13 18:15:46 +00:00
|
|
|
button-background-hover-color: $p5js-pink,
|
2020-04-22 22:31:04 +00:00
|
|
|
button-background-active-color: $p5js-active-pink,
|
|
|
|
button-nav-inactive-color: $middle-light,
|
|
|
|
button-hover-color: $lightest,
|
|
|
|
button-active-color: $lightest,
|
|
|
|
modal-background-color: $dark,
|
|
|
|
preferences-button-background-color: $middle-dark,
|
|
|
|
modal-border-color: $middle-dark,
|
|
|
|
icon-color: $middle-light,
|
|
|
|
icon-hover-color: $lightest,
|
|
|
|
icon-toast-hover-color: $lightest,
|
2016-09-13 18:15:46 +00:00
|
|
|
shadow-color: rgba(0, 0, 0, 0.16),
|
2020-04-22 22:31:04 +00:00
|
|
|
console-background-color: $dark,
|
|
|
|
console-color: $lightest,
|
|
|
|
console-header-background-color: $medium-dark,
|
|
|
|
console-header-color: $lightest,
|
2020-04-27 21:30:55 +00:00
|
|
|
console-info-background-color: #5276B7,
|
|
|
|
console-warn-background-color: #966C08,
|
|
|
|
console-error-background-color: #DD3134,
|
|
|
|
console-debug-background-color: #097BB3,
|
2020-04-22 22:31:04 +00:00
|
|
|
ide-border-color: $middle-dark,
|
|
|
|
editor-gutter-color: $darker,
|
2020-04-24 00:25:39 +00:00
|
|
|
file-hover-color: $dark,
|
|
|
|
file-selected-color: $medium-dark,
|
|
|
|
input-text-color: $lightest,
|
|
|
|
input-background-color: $dark,
|
2020-04-27 20:48:55 +00:00
|
|
|
input-secondary-background-color: $medium-dark,
|
2020-04-24 00:25:39 +00:00
|
|
|
input-border-color: $middle-dark,
|
|
|
|
search-background-color: $lightest,
|
|
|
|
search-clear-background-color: $medium-dark,
|
|
|
|
search-hover-text-color: $lightest,
|
2019-08-21 18:08:08 +00:00
|
|
|
search-hover-background-color: $p5js-pink,
|
2020-04-24 00:25:39 +00:00
|
|
|
keyboard-shortcut-color: $middle-light,
|
2017-10-11 16:56:44 +00:00
|
|
|
nav-hover-color: $p5js-pink,
|
2020-04-21 21:49:02 +00:00
|
|
|
nav-border-color: $middle-dark,
|
2019-04-17 21:05:55 +00:00
|
|
|
error-color: $p5js-pink,
|
2020-04-24 00:25:39 +00:00
|
|
|
table-row-stripe-color: $dark,
|
2020-04-29 22:34:37 +00:00
|
|
|
codefold-icon-open: url(../images/triangle-arrow-down-white.svg?byUrl),
|
|
|
|
codefold-icon-closed: url(../images/triangle-arrow-right-white.svg?byUrl),
|
2019-10-03 04:41:57 +00:00
|
|
|
|
2020-04-24 00:25:39 +00:00
|
|
|
primary-button-color: $lightest,
|
2019-10-03 04:41:57 +00:00
|
|
|
primary-button-background-color: $p5js-pink,
|
|
|
|
|
2020-04-24 00:25:39 +00:00
|
|
|
table-button-color: $lightest,
|
2020-04-22 22:31:04 +00:00
|
|
|
table-button-background-color: $middle-gray,
|
2020-04-24 00:25:39 +00:00
|
|
|
table-button-active-color: $lightest,
|
2020-01-15 11:23:46 +00:00
|
|
|
table-button-background-active-color: #00A1D3,
|
2020-04-24 00:25:39 +00:00
|
|
|
table-button-hover-color: $lightest,
|
2019-11-25 12:53:44 +00:00
|
|
|
table-button-background-hover-color: $p5js-pink,
|
|
|
|
|
2020-04-22 22:31:04 +00:00
|
|
|
progress-bar-background-color: $middle-gray,
|
2020-04-24 00:25:39 +00:00
|
|
|
progress-bar-active-color: $p5js-active-pink,
|
2019-11-10 18:42:26 +00:00
|
|
|
|
2020-04-24 00:25:39 +00:00
|
|
|
form-title-color: $lightest,
|
|
|
|
form-secondary-title-color: $medium-light,
|
|
|
|
form-navigation-options-color: $middle-light
|
2016-10-12 16:08:12 +00:00
|
|
|
),
|
|
|
|
contrast: (
|
2016-10-18 02:57:29 +00:00
|
|
|
logo-color: $yellow,
|
2020-04-27 20:48:55 +00:00
|
|
|
logo-background-color: $darker,
|
2020-04-21 21:49:02 +00:00
|
|
|
heavy-text-color: $yellow,
|
2020-04-24 22:34:26 +00:00
|
|
|
primary-text-color: $lightest,
|
2019-04-02 19:10:49 +00:00
|
|
|
dropzone-text-color: $black,
|
2020-04-24 22:34:26 +00:00
|
|
|
modal-button-color: $dark,
|
|
|
|
secondary-text-color: $lighter,
|
|
|
|
inactive-text-color: $light,
|
2020-04-24 00:31:00 +00:00
|
|
|
background-color: $darker,
|
2020-04-28 21:31:27 +00:00
|
|
|
button-background-color: $dark,
|
|
|
|
button-secondary-background-color: $medium-dark,
|
|
|
|
button-color: $light,
|
|
|
|
button-border-color: $middle-dark,
|
2020-04-24 22:34:26 +00:00
|
|
|
toolbar-button-color: $dark,
|
|
|
|
toolbar-button-background-color: $medium-light,
|
2016-10-12 16:08:12 +00:00
|
|
|
button-background-hover-color: $yellow,
|
2020-02-27 19:29:51 +00:00
|
|
|
button-background-active-color: $yellow,
|
2020-04-24 22:34:26 +00:00
|
|
|
button-nav-inactive-color: $light,
|
|
|
|
button-hover-color: $dark,
|
|
|
|
button-active-color: $dark,
|
|
|
|
modal-background-color: $dark,
|
|
|
|
preferences-button-background-color: $medium-light,
|
|
|
|
modal-border-color: $middle-dark,
|
|
|
|
icon-color: $medium-light,
|
2016-10-12 16:08:12 +00:00
|
|
|
icon-hover-color: $yellow,
|
2017-03-06 19:29:42 +00:00
|
|
|
icon-toast-hover-color: $yellow,
|
2016-10-12 16:08:12 +00:00
|
|
|
shadow-color: rgba(0, 0, 0, 0.16),
|
2020-04-24 22:34:26 +00:00
|
|
|
console-background-color: $dark,
|
2018-07-30 16:20:57 +00:00
|
|
|
console-color: $black,
|
2020-04-24 22:34:26 +00:00
|
|
|
console-header-background-color: $medium-dark,
|
|
|
|
console-header-color: $lightest,
|
2018-07-30 16:20:57 +00:00
|
|
|
console-info-background-color: $lightsteelblue,
|
|
|
|
console-warn-background-color: $orange,
|
|
|
|
console-debug-background-color: $dodgerblue,
|
|
|
|
console-error-background-color: $red,
|
2020-04-24 22:34:26 +00:00
|
|
|
ide-border-color: $middle-dark,
|
|
|
|
editor-gutter-color: $darker,
|
|
|
|
file-hover-color: $dark,
|
|
|
|
file-selected-color: $medium-dark,
|
|
|
|
input-text-color: $lightest,
|
|
|
|
input-background-color: $dark,
|
2020-04-27 20:48:55 +00:00
|
|
|
input-secondary-background-color: $medium-dark,
|
2020-04-24 22:34:26 +00:00
|
|
|
input-border-color: $middle-dark,
|
2017-07-25 19:35:18 +00:00
|
|
|
search-background-color: $white,
|
2020-04-24 22:34:26 +00:00
|
|
|
search-clear-background-color: $medium-dark,
|
|
|
|
search-hover-text-color: $dark,
|
2019-08-21 18:08:08 +00:00
|
|
|
search-hover-background-color: $yellow,
|
2020-04-24 22:34:26 +00:00
|
|
|
keyboard-shortcut-color: $middle-light,
|
2017-10-12 18:22:17 +00:00
|
|
|
nav-hover-color: $yellow,
|
2020-04-21 21:49:02 +00:00
|
|
|
nav-border-color: $middle-dark,
|
2019-04-17 21:05:55 +00:00
|
|
|
error-color: $p5-contrast-pink,
|
2020-04-27 20:48:55 +00:00
|
|
|
table-row-stripe-color: $dark,
|
2020-04-29 22:34:37 +00:00
|
|
|
codefold-icon-open: url(../images/triangle-arrow-down-white.svg?byUrl),
|
|
|
|
codefold-icon-closed: url(../images/triangle-arrow-right-white.svg?byUrl),
|
2019-10-03 04:41:57 +00:00
|
|
|
|
2020-04-24 22:34:26 +00:00
|
|
|
primary-button-color: $lightest,
|
2019-10-03 04:41:57 +00:00
|
|
|
primary-button-background-color: $p5js-pink,
|
|
|
|
|
2020-04-24 22:34:26 +00:00
|
|
|
table-button-color: $dark,
|
|
|
|
table-button-background-color: $middle-gray,
|
|
|
|
table-button-active-color: $dark,
|
2020-01-15 11:23:46 +00:00
|
|
|
table-button-background-active-color: #00FFFF,
|
2020-04-24 22:34:26 +00:00
|
|
|
table-button-hover-color: $dark,
|
2019-11-25 12:53:44 +00:00
|
|
|
table-button-background-hover-color: $yellow,
|
|
|
|
|
2020-04-24 22:34:26 +00:00
|
|
|
progress-bar-background-color: $middle-gray,
|
|
|
|
progress-bar-active-color: $p5js-active-pink,
|
2019-11-10 18:42:26 +00:00
|
|
|
|
2020-04-24 22:34:26 +00:00
|
|
|
form-title-color: $lightest,
|
|
|
|
form-secondary-title-color: $medium-light,
|
|
|
|
form-navigation-options-color: $middle-light
|
2016-09-13 18:15:46 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-04-27 20:48:55 +00:00
|
|
|
$toast-background-color: $medium-dark;
|
2020-04-24 22:34:26 +00:00
|
|
|
$toast-text-color: $lightest;
|
2016-12-15 23:43:58 +00:00
|
|
|
|
2020-04-27 20:48:55 +00:00
|
|
|
$light-console-error-color: #D11518;
|
|
|
|
$light-console-warn-color: #FAAF00;
|
2020-04-27 21:30:55 +00:00
|
|
|
$light-console-debug-color: #0071AD;
|
2020-04-27 20:48:55 +00:00
|
|
|
|
|
|
|
$dark-console-error-color: #DF3A3D;
|
|
|
|
$dark-console-warn-color: #F5BC38;
|
|
|
|
$dark-console-debug-color: #0C99E2;
|
|
|
|
|
2017-01-06 18:14:39 +00:00
|
|
|
$about-play-background-color: rgba(255, 255, 255, 0.7);
|
2018-10-18 18:10:37 +00:00
|
|
|
$about-button-border-color: rgba(151, 151, 151, 0.7);
|