Spaces:
Runtime error
Runtime error
File size: 4,230 Bytes
8fd7a1d |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
import musicIcon from './high-contrast-media/extensions/musicIcon.svg';
import penIcon from './high-contrast-media/extensions/penIcon.svg';
import text2speechIcon from './high-contrast-media/extensions/text2speechIcon.svg';
import translateIcon from './high-contrast-media/extensions/translateIcon.svg';
import videoSensingIcon from './high-contrast-media/extensions/videoSensingIcon.svg';
import {hex2hsv, hsv2hex} from '../../tw-color-utils';
const blockColors = {
motion: {
primary: '#80B5FF',
secondary: '#B3D2FF',
tertiary: '#3373CC',
quaternary: '#CCE1FF'
},
looks: {
primary: '#CCB3FF',
secondary: '#DDCCFF',
tertiary: '#774DCB',
quaternary: '#EEE5FF'
},
sounds: {
primary: '#E19DE1',
secondary: '#FFB3FF',
tertiary: '#BD42BD',
quaternary: '#FFCCFF'
},
control: {
primary: '#FFBE4C',
secondary: '#FFDA99',
tertiary: '#CF8B17',
quaternary: '#FFE3B3'
},
event: {
primary: '#FFD966',
secondary: '#FFECB3',
tertiary: '#CC9900',
quaternary: '#FFF2CC'
},
sensing: {
primary: '#85C4E0',
secondary: '#AED8EA',
tertiary: '#2E8EB8',
quaternary: '#C2E2F0'
},
pen: {
primary: '#13ECAF',
secondary: '#75F0CD',
tertiary: '#0B8E69',
quaternary: '#A3F5DE'
},
operators: {
primary: '#7ECE7E',
secondary: '#B5E3B5',
tertiary: '#389438',
quaternary: '#DAF1DA'
},
data: {
primary: '#FFA54C',
secondary: '#FFCC99',
tertiary: '#DB6E00',
quaternary: '#FFE5CC'
},
// This is not a new category, but rather for differentiation
// between lists and scalar variables.
data_lists: {
primary: '#FF9966',
secondary: '#FFCAB0', // I don't think this is used, b/c we don't have any droppable fields in list blocks
tertiary: '#E64D00',
quaternary: '#FFDDCC'
},
more: {
primary: '#FF99AA',
secondary: '#FFCCD5',
tertiary: '#FF3355',
quaternary: '#FFE5EA'
},
addons: {
primary: '#34e4d0',
secondary: '#71e2d5',
tertiary: '#29b2a2',
quaternary: '#9ee2db'
},
text: '#000000',
textFieldText: '#000000', // Text inside of inputs e.g. 90 in [point in direction (90)]
toolboxText: '#000000', // Toolbox text, color picker text (used to be #575E75)
blackText: '#000000',
// The color that the category menu label (e.g. 'motion', 'looks', etc.) changes to on hover
toolboxHover: '#3373CC',
insertionMarker: '#000000',
insertionMarkerOpacity: 0.2,
fieldShadow: 'rgba(255, 255, 255, 0.3)',
dragShadowOpacity: 0.6,
menuHover: 'rgba(255, 255, 255, 0.3)'
};
const extensions = {
music: {
blockIconURI: musicIcon
},
pen: {
blockIconURI: penIcon
},
text2speech: {
blockIconURI: text2speechIcon
},
translate: {
blockIconURI: translateIcon
},
videoSensing: {
blockIconURI: videoSensingIcon
}
};
const clamp = (value, lower, upper) => Math.max(lower, Math.min(upper, value));
const customExtensionColors = {
primary: primary => {
const hsv = hex2hsv(primary);
hsv[1] = clamp(hsv[1] - 20, 0, 50);
hsv[2] = clamp(hsv[2] + 20, 80, 100);
return hsv2hex(hsv);
},
secondary: primary => {
const hsv = hex2hsv(primary);
hsv[1] = clamp(hsv[1] - 40, 0, 50);
hsv[2] = clamp(hsv[2] + 20, 80, 100);
return hsv2hex(hsv);
},
tertiary: primary => {
const hsv = hex2hsv(primary);
hsv[2] = clamp(hsv[2] - 20, 0, 100);
return hsv2hex(hsv);
},
quaternary: primary => {
const hsv = hex2hsv(primary);
hsv[1] = clamp(hsv[1] - 60, 0, 100);
hsv[2] = clamp(hsv[2] + 20, 90, 100);
return hsv2hex(hsv);
},
categoryIconBackground: primary => customExtensionColors.primary(primary),
categoryIconBorder: primary => customExtensionColors.tertiary(primary)
};
export {
blockColors,
extensions,
customExtensionColors
};
|