Spaces:
Runtime error
Runtime error
File size: 1,990 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 |
const guiColors = {
'color-scheme': 'dark',
'ui-primary': '#111111',
'ui-secondary': '#1e1e1e',
'ui-tertiary': '#2e2e2e',
'ui-modal-overlay': '#333333aa',
'ui-modal-background': '#111111',
'ui-modal-foreground': '#eeeeee',
'ui-modal-header-background': '#333333',
'ui-modal-header-foreground': '#ffffff',
'ui-white': '#111111',
'ui-black-transparent': '#ffffff26',
'text-primary': '#eeeeee',
'menu-bar-background': '#333333',
'assets-background': '#111111',
'input-background': '#1e1e1e',
'popover-background': '#1e1e1e',
'badge-background': '#16202c',
'badge-border': '#203652',
'fullscreen-background': '#111111',
'fullscreen-accent': '#111111',
'page-background': '#111111',
'page-foreground': '#eeeeee',
'project-title-inactive': 'var(--ui-secondary)',
'project-title-hover': '#ffffff3f',
'link-color': '#44aaff',
'filter-icon-black': 'invert(100%)',
'filter-icon-gray': 'grayscale(100%) brightness(1.7)',
'filter-icon-white': 'brightness(0) invert(100%)',
'paint-filter-icon-gray': 'brightness(1.7)'
};
const blockColors = {
insertionMarker: '#cccccc',
workspace: '#1e1e1e',
toolboxSelected: '#1e1e1e',
toolboxText: '#cccccc',
toolbox: '#111111',
flyout: '#111111',
scrollbar: '#666666',
valueReportBackground: '#1e1e1e',
valueReportBorder: '#333333',
valueReportForeground: '#eeeeee',
contextMenuBackground: '#111111',
contextMenuBorder: '#ffffff26',
contextMenuForeground: '#eeeeee',
contextMenuActiveBackground: '#2e2e2e',
contextMenuDisabledForeground: '#666666',
flyoutLabelColor: '#cccccc',
checkboxInactiveBackground: '#222222',
checkboxInactiveBorder: '#c8c8c8',
buttonBorder: '#c6c6c6',
buttonActiveBackground: '#222222',
buttonForeground: '#cccccc',
zoomIconFilter: 'invert(100%)',
gridColor: '#484848'
};
export {
guiColors,
blockColors
};
|