Spaces:
Runtime error
Runtime error
File size: 3,642 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 |
const blockColors = {
motion: {
primary: '#4C97FF',
secondary: '#4280D7',
tertiary: '#3373CC',
quaternary: '#3373CC'
},
looks: {
primary: '#9966FF',
secondary: '#855CD6',
tertiary: '#774DCB',
quaternary: '#774DCB'
},
sounds: {
primary: '#CF63CF',
secondary: '#C94FC9',
tertiary: '#BD42BD',
quaternary: '#BD42BD'
},
control: {
primary: '#FFAB19',
secondary: '#EC9C13',
tertiary: '#CF8B17',
quaternary: '#CF8B17'
},
event: {
primary: '#FFBF00',
secondary: '#E6AC00',
tertiary: '#CC9900',
quaternary: '#CC9900'
},
sensing: {
primary: '#5CB1D6',
secondary: '#47A8D1',
tertiary: '#2E8EB8',
quaternary: '#2E8EB8'
},
pen: {
primary: '#0fBD8C',
secondary: '#0DA57A',
tertiary: '#0B8E69',
quaternary: '#0B8E69'
},
operators: {
primary: '#59C059',
secondary: '#46B946',
tertiary: '#389438',
quaternary: '#389438'
},
data: {
primary: '#FF8C1A',
secondary: '#FF8000',
tertiary: '#DB6E00',
quaternary: '#DB6E00'
},
// This is not a new category, but rather for differentiation
// between lists and scalar variables.
data_lists: {
primary: '#FF661A',
secondary: '#FF5500',
tertiary: '#E64D00',
quaternary: '#E64D00'
},
more: {
primary: '#FF6680',
secondary: '#FF4D6A',
tertiary: '#FF3355',
quaternary: '#FF3355'
},
addons: {
primary: '#29beb8',
secondary: '#3aa8a4',
tertiary: '#3aa8a4',
quaternary: '#3aa8a4'
},
patch: {
primary: '#2DA4A0',
secondary: '#66BDBA',
tertiary: '#24827F',
quaternary: '#1B615F'
},
text: '#FFFFFF',
workspace: '#F9F9F9',
toolboxHover: '#4C97FF',
toolboxSelected: '#E9EEF2',
toolboxText: '#575E75',
toolbox: '#FFFFFF',
blackText: '#575E75',
flyout: '#F9F9F9',
scrollbar: '#CECDCE',
scrollbarHover: '#CECDCE',
textField: '#FFFFFF',
textFieldText: '#575E75',
insertionMarker: '#000000',
insertionMarkerOpacity: 0.2,
dragShadowOpacity: 0.6,
stackGlow: '#FFF200',
stackGlowSize: 4,
stackGlowOpacity: 1,
replacementGlow: '#FFFFFF',
replacementGlowSize: 2,
replacementGlowOpacity: 1,
colourPickerStroke: '#FFFFFF',
// CSS colours: support RGBA
fieldShadow: 'rgba(255, 255, 255, 0.3)',
dropDownShadow: 'rgba(0, 0, 0, .3)',
numPadBackground: '#547AB2',
numPadBorder: '#435F91',
numPadActiveBackground: '#435F91',
numPadText: 'white', // Do not use hex here, it cannot be inlined with data-uri SVG
valueReportBackground: '#FFFFFF',
valueReportBorder: '#AAAAAA',
valueReportForeground: '#000000',
menuHover: 'rgba(0, 0, 0, 0.2)',
contextMenuBackground: '#ffffff',
contextMenuBorder: '#cccccc',
contextMenuForeground: '#000000',
contextMenuActiveBackground: '#d6e9f8',
contextMenuDisabledForeground: '#cccccc',
flyoutLabelColor: '#575E75',
checkboxInactiveBackground: '#ffffff',
checkboxInactiveBorder: '#c8c8c8',
checkboxActiveBackground: '#4C97FF',
checkboxActiveBorder: '#3373CC',
checkboxCheck: '#ffffff',
buttonBorder: '#c6c6c6',
buttonActiveBackground: '#ffffff',
buttonForeground: '#575E75',
zoomIconFilter: 'none',
gridColor: '#dddddd'
};
const extensions = {};
export {
blockColors,
extensions
};
|