new-style themes

This commit is contained in:
rolux 2012-12-28 18:23:08 +01:00
parent f54db91aaa
commit d61d061915
186 changed files with 406 additions and 3041 deletions

View file

@ -1,37 +0,0 @@
body.OxThemeFuture {
background: rgb(240, 240, 240);
}
/*
--------------------------------------------------------------------------------
input
--------------------------------------------------------------------------------
*/
.OxThemeFuture .OxButton,
.OxThemeFuture .OxInput {
border: 1px solid rgb(128, 128, 128);
color: rgb(64, 64, 64);
}
.OxThemeFuture .OxButton {
background: -moz-linear-gradient(left top, left bottom, from(rgb(224, 224, 224)), to(rgb(192, 192, 192)));
background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), to(rgb(192, 192, 192)));
}
.OxThemeFuture .OxButton:active {
background: rgb(208, 208, 208);
}
.OxThemeFuture .OxInput {
//border-top-color: rgb(96, 96, 96);
//border-right-color: rgb(128, 128, 128);
//border-bottom-color: rgb(160, 160, 160);
//border-left-color: rgb(128, 128, 128);
background: -moz-linear-gradient(left top, left bottom, from(rgb(224, 224, 224)), to(rgb(255, 255, 255)));
background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), to(rgb(255, 255, 255)));
}
.OxThemeFuture .OxInput:focus {
-moz-box-shadow: 0 0 4px rgb(128, 128, 128);
-webkit-box-shadow: 0 0 4px rgb(128, 128, 128);
}
.OxThemeFuture .OxInput.OxPlaceholder {
color: rgb(160, 160, 160)
}

View file

@ -1,970 +0,0 @@
html:fullscreen {
background: rgb(240, 240, 240);
}
html:-moz-full-screen {
background: rgb(240, 240, 240);
}
html:-webkit-full-screen {
background: rgb(240, 240, 240);
}
body.OxThemeClassic {
background: rgb(240, 240, 240);
}
.OxThemeClassic a {
color: rgb(0, 0, 128);
}
.OxThemeClassic div {
color: rgb(16, 16, 16);
}
.OxThemeClassic .OxHighlight {
background: rgb(255, 255, 0);
}
.OxThemeClassic .OxBright {
color: rgb(0, 0, 0);
}
.OxThemeClassic .OxLight {
color: rgb(128, 128, 128);
}
.OxThemeClassic .OxGrid {
background-color: rgb(248, 248, 248);
background-image:
-moz-linear-gradient(45deg, rgb(232, 232, 232) 25%, transparent 25%, transparent 75%, rgb(232, 232, 232) 75%, rgb(232, 232, 232)),
-moz-linear-gradient(45deg, rgb(232, 232, 232) 25%, transparent 25%, transparent 75%, rgb(232, 232, 232) 75%, rgb(232, 232, 232));
background-image:
-o-linear-gradient(45deg, rgb(232, 232, 232) 25%, transparent 25%, transparent 75%, rgb(232, 232, 232) 75%, rgb(232, 232, 232)),
-o-linear-gradient(45deg, rgb(232, 232, 232) 25%, transparent 25%, transparent 75%, rgb(232, 232, 232) 75%, rgb(232, 232, 232));
background-image:
-webkit-linear-gradient(45deg, rgb(232, 232, 232) 25%, transparent 25%, transparent 75%, rgb(232, 232, 232) 75%, rgb(232, 232, 232)),
-webkit-linear-gradient(45deg, rgb(232, 232, 232) 25%, transparent 25%, transparent 75%, rgb(232, 232, 232) 75%, rgb(232, 232, 232));
background-size: 32px 32px;
background-position: 0 0, 16px 16px
}
/*
================================================================================
Bars
================================================================================
*/
.OxThemeClassic .OxBar.OxHorizontal {
//background: -moz-linear-gradient(top, rgb(192, 192, 192), rgb(160, 160, 160));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(192, 192, 192)), to(rgb(160, 160, 160)));
background-image: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic .OxBar.OxMainMenu {
background-image: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic .OxProgressbar {
border-color: rgb(176, 176, 176);
background-image: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic .OxProgressbar .OxTrack {
border-color: rgb(176, 176, 176);
background-image: -moz-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
background-image: -o-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
background-image: -webkit-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
}
.OxThemeClassic .OxProgressbar .OxProgress {
border-color: rgb(176, 176, 176);
background-image:
-moz-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 50%,
transparent 50%, transparent 75%,
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 100%
),
-moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image:
-o-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 50%,
transparent 50%, transparent 75%,
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 100%
),
-o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image:
-webkit-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 50%,
transparent 50%, transparent 75%,
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 100%
),
-webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-size: 32px 32px, 16px 16px;
}
.OxThemeClassic .OxProgressbar .OxProgress.OxAnimate {
background-image:
-moz-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 50%,
transparent 50%, transparent 75%,
rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1) 100%
),
-moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image:
-o-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 50%,
transparent 50%, transparent 75%,
rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1) 100%
),
-o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background-image:
-webkit-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 50%,
transparent 50%, transparent 75%,
rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1) 100%
),
-webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic .OxResizebar > .OxLine {
background-color: rgb(208, 208, 208);
}
/*
================================================================================
Calendar
================================================================================
*/
.OxThemeClassic .OxCalendar .OxTimeline > div.odd {
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic .OxCalendar .OxTimeline > div.even {
background: -moz-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
background: -o-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
background: -webkit-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
}
.OxThemeClassic .OxCalendar .OxBackground > div {
//background: rgb(20, 20, 20);
background: rgb(232, 232, 232);
}
.OxThemeClassic .OxCalendar .OxBackground > div.line {
background: rgb(224, 224, 224);
}
.OxThemeClassic .OxCalendar .OxLine > .OxEvent {
color: rgb(0, 0, 0);
}
.OxThemeClassic .OxCalendar .OxLine > .OxEvent.OxSelected {
box-shadow: inset 0 0 1px rgb(0, 0, 0),
inset 0 0 1px rgb(0, 0, 0),
inset 0 0 1px rgb(0, 0, 0),
inset 0 0 1px rgb(0, 0, 0);
}
.OxThemeClassic .OxEvent.OxDate {
background: -moz-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(96, 96, 224, 0.9));
background: -o-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(96, 96, 224, 0.9));
background: -webkit-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(96, 96, 224, 0.9));
}
.OxThemeClassic .OxEvent.OxPlace {
background: -moz-linear-gradient(top, rgba(0, 192, 96, 0.9), rgba(0, 160, 64, 0.9));
background: -o-linear-gradient(top, rgba(0, 192, 96, 0.9), rgba(0, 160, 64, 0.9));
background: -webkit-linear-gradient(top, rgba(0, 192, 96, 0.9), rgba(0, 160, 64, 0.9));
}
.OxThemeClassic .OxEvent.OxPerson {
background: -moz-linear-gradient(top, rgba(255, 128, 0, 0.9), rgba(224, 96, 0, 0.9));
background: -o-linear-gradient(top, rgba(255, 128, 0, 0.9), rgba(224, 96, 0, 0.9));
background: -webkit-linear-gradient(top, rgba(255, 128, 0, 0.9), rgba(224, 96, 0, 0.9));
}
.OxThemeClassic .OxEvent.OxOther {
background: -moz-linear-gradient(top, rgba(255, 128, 128, 0.9), rgba(224, 96, 96, 0.9));
background: -o-linear-gradient(top, rgba(255, 128, 128, 0.9), rgba(224, 96, 96, 0.9));
background: -webkit-linear-gradient(top, rgba(255, 64, 64, 0.9), rgba(224, 32, 32, 0.9));
}
.OxThemeClassic .OxCalendar .OxOverlay div:nth-child(even) {
background-color: rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 2px rgb(0, 0, 0);
}
.OxThemeClassic .OxCalendar .OxOverlay div:nth-child(odd) {
background-color: rgba(255, 255, 255, 0.25);
}
.OxThemeModern .OxCalendar .OxCalendarControl,
.OxThemeModern .OxCalendar .OxEventControl {
border-color: rgb(64, 64, 64);
background: rgba(255, 255, 255, 0.75);
color: rgb(64, 64, 64);
}
.OxThemeClassic .OxCalendarEditor .OxWarning {
border-bottom: 2px dotted rgb(255, 64, 64);
}
/*
================================================================================
Dialog
================================================================================
*/
.OxThemeClassic .OxDialog {
-moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
-o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}
.OxThemeClassic .OxDialog .OxBar {
background: -moz-linear-gradient(top, rgba(224, 224, 224, 0.95), rgba(192, 192, 192, 0.95));
background: -o-linear-gradient(top, rgba(224, 224, 224, 0.95), rgba(192, 192, 192, 0.95));
background: -webkit-linear-gradient(top, rgba(224, 224, 224, 0.95), rgba(192, 192, 192, 0.95));
}
.OxThemeClassic .OxDialog .OxContent {
background: rgba(208, 208, 208, 0.95);
}
.OxThemeClassic .OxDialog .OxIconList .OxContent {
background: transparent;
}
.OxThemeClassic .OxDialog .OxTitle {
//color: rgb(48, 48, 48);
}
.OxThemeClassic .OxLayer {
background: rgb(255, 255, 255);
}
/*
================================================================================
DocPage
================================================================================
*/
.OxThemeClassic .OxFailed {
color: rgb(192, 0, 0);
}
/*
================================================================================
Document
================================================================================
*/
.OxThemeClassic .OxDocument code {
color: rgb(0, 0, 64);
//background: rgb(255, 255, 255);
}
.OxThemeClassic .OxDocument div {
border-color: rgb(208, 208, 208);
}
/*
================================================================================
Forms
================================================================================
*/
.OxThemeClassic .OxButton,
.OxThemeClassic input.OxCheckbox,
.OxThemeClassic input.OxInput,
.OxThemeClassic textarea,
.OxThemeClassic .OxLabel,
.OxThemeClassic .OxTrack {
border-color: rgb(176, 176, 176);
//border: 1px solid rgb(160, 160, 160);
color: rgb(64, 64, 64);
}
.OxThemeClassic .OxSelect {
border-color: rgb(176, 176, 176);
}
.OxThemeClassic .OxSelect > .OxTitle {
color: rgb(64, 64, 64);
}
.OxThemeClassic .OxInputLabel {
color: rgb(64, 64, 64);
}
.OxThemeClassic .OxButton,
.OxThemeClassic div.OxInput,
.OxThemeClassic .OxSelect {
//background: -moz-linear-gradient(left top, left bottom, from(rgb(192, 192, 192)), to(rgb(160, 160, 160)));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(192, 192, 192)), to(rgb(160, 160, 160)));
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic div.OxInput.OxTextarea {
background: transparent;
}
.OxThemeClassic .OxButton:active {
//background: rgb(160, 160, 160);
background: rgb(192, 192, 192);
color: rgb(48, 48, 48);
}
.OxThemeClassic .OxCheckbox:active {
background: -moz-linear-gradient(top, rgb(192, 192, 192), rgb(240, 240, 240));
background: -o-linear-gradient(top, rgb(192, 192, 192), rgb(240, 240, 240));
background: -webkit-linear-gradient(top, rgb(192, 192, 192), rgb(240, 240, 240));
}
.OxThemeClassic .OxButton:focus {
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
-o-box-shadow: 0 0 2px rgb(128, 128, 128);
-webkit-box-shadow: 0 2 4px rgb(128, 128, 128);
}
.OxThemeClassic .OxButton.OxDisabled {
background: rgb(192, 192, 192);
color: rgb(128, 128, 128);
}
.OxThemeClassic .OxButton.OxSymbol.OxDisabled {
background: rgba(0, 0, 0, 0);
opacity: 0.5;
}
.OxThemeClassic .OxButton.OxSelected,
.OxThemeClassic .OxSelect.OxSelected,
.OxThemeClassic .OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxSelected {
background: -moz-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
background: -o-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
background: -webkit-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
color: rgb(32, 32, 32);
}
.OxThemeClassic .OxButton.OxTab {
//background: -moz-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
//background: -webkit-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
}
.OxThemeClassic .OxButton.OxTab.OxSelected {
//background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
//background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
border-bottom: 1px solid rgb(192, 192, 192);
}
.OxThemeClassic .OxFileInput.OxDisabled > .OxBar {
background: rgb(192, 192, 192);
}
.OxThemeClassic .OxFileInput.OxDisabled > .OxBar > div {
color: rgb(128, 128, 128);
}
.OxThemeClassic .OxFormMessage {
color: rgb(192, 64, 64);
}
.OxThemeClassic .OxLabel.OxDisabled {
color: rgb(128, 128, 128);
}
.OxThemeClassic .OxDocPage .OxLabel.OxSquare,
.OxThemeClassic .OxExamplePage .OxLabel.OxSquare {
background: rgb(240, 240, 240);
}
.OxThemeClassic input.OxCheckbox,
.OxThemeClassic input.OxInput,
.OxThemeClassic textarea,
.OxThemeClassic .OxTrack {
//background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(255, 255, 255));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), to(rgb(255, 255, 255)));
background: -moz-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
background: -o-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
background: -webkit-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
}
.OxThemeClassic div.OxInput.OxError input {
color: rgb(192, 64, 64);
}
.OxThemeClassic .OxInput:focus {
//border: 1px solid rgb(160, 160, 160);
//-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
//-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
}
.OxThemeClassic div.OxInput.OxFocus,
.OxThemeClassic .OxSelect.OxFocus {
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
-o-box-shadow: 0 0 2px rgb(128, 128, 128);
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
}
.OxThemeClassic .OxInput.OxPlaceholder {
color: rgb(160, 160, 160)
}
.OxThemeClassic .OxLabel {
background: rgb(208, 208, 208);
}
.OxThemeClassic input.OxCheckbox.OxDisabled,
.OxThemeClassic input.OxInput:disabled {
background: rgb(224, 224, 224);
}
.OxThemeClassic .OxLabelSelect > .OxTitle {
border-color: rgb(176, 176, 176);
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background: -o-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic .OxLabelSelect.OxSelected > .OxTitle {
background: -moz-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
background: -o-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
background: -webkit-linear-gradient(top, rgb(160, 160, 160), rgb(192, 192, 192));
}
.OxThemeClassic .OxFileInput > .OxBar,
.OxThemeClassic .OxFileInput > .OxFiles {
border-color: rgb(176, 176, 176);
}
.OxThemeClassic .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
border-top-color: rgb(208, 208, 208);
}
.OxThemeClassic .OxEditableElement.OxSelected {
background: rgb(208, 208, 208);
}
/*
================================================================================
Images
================================================================================
*/
.OxThemeClassic .OxReflection > div {
background: -moz-linear-gradient(top, rgba(240, 240, 240, 0.75), rgba(240, 240, 240, 1));
background: -o-linear-gradient(top, rgba(240, 240, 240, 0.75), rgba(240, 240, 240, 1));
background: -webkit-linear-gradient(top, rgba(240, 240, 240, 0.75), rgba(240, 240, 240, 1));
}
.OxThemeClassic .OxDialog .OxReflection > div {
background: -moz-linear-gradient(top, rgba(208, 208, 208, 0.75), rgba(208, 208, 208, 1));
background: -o-linear-gradient(top, rgba(208, 208, 208, 0.75), rgba(208, 208, 208, 1));
background: -webkit-linear-gradient(top, rgba(208, 208, 208, 0.75), rgba(208, 208, 208, 1));
}
/*
================================================================================
Lists
================================================================================
*/
.OxThemeClassic .OxIconList .OxItem > .OxIcon > img.OxLoading,
.OxThemeClassic .OxInfoList .OxItem .OxIcon > img.OxLoading {
border-color: rgb(208, 208, 208);
background: -moz-linear-gradient(top, rgb(255, 255, 255), rgb(224, 224, 224));
background: -o-linear-gradient(top, rgb(255, 255, 255), rgb(224, 224, 224));
background: -webkit-linear-gradient(top, rgb(255, 255, 255), rgb(224, 224, 224));
}
.OxThemeClassic .OxIconList .OxItem.OxSelected > .OxIcon > img,
.OxThemeClassic .OxIconList .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.OxThemeClassic .OxInfoList .OxItem.OxSelected .OxIcon > img,
.OxThemeClassic .OxInfoList .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: rgb(192, 192, 192);
-moz-box-shadow: 0 0 4px rgba(192, 192, 192, 1);
-o-box-shadow: 0 0 4px rgba(192, 192, 192, 1);
-webkit-box-shadow: 0 0 4px rgba(192, 192, 192, 1);
}
.OxThemeClassic .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon > img,
.OxThemeClassic .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.OxThemeClassic .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon > img,
.OxThemeClassic .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: rgb(128, 128, 128);
-moz-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
-o-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
-webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
}
.OxThemeClassic .OxIconList .OxItem > .OxText > div,
.OxThemeClassic .OxInfoList .OxItem .OxText > div {
text-shadow: rgb(255, 255, 255) -1px -1px 0,
rgb(255, 255, 255) -1px 1px 0,
rgb(255, 255, 255) 1px -1px 0,
rgb(255, 255, 255) 1px 1px 0;
}
.OxThemeClassic .OxIconList .OxItem.OxSelected > .OxText > div,
.OxThemeClassic .OxInfoList .OxItem.OxSelected .OxText > div {
border-color: rgb(160, 160, 160);
background: rgba(160, 160, 160, 0.5);
text-shadow: rgb(240, 240, 240) -1px -1px 0,
rgb(240, 240, 240) -1px 1px 0,
rgb(240, 240, 240) 1px -1px 0,
rgb(240, 240, 240) 1px 1px 0;
-moz-box-shadow: 0 0 4px rgba(160, 160, 160, 1);
-o-box-shadow: 0 0 4px rgba(160, 160, 160, 1);
-webkit-box-shadow: 0 0 4px rgba(160, 160, 160, 1);
}
.OxThemeClassic .OxIconList.OxFocus .OxItem.OxSelected > .OxText > div,
.OxThemeClassic .OxInfoList.OxFocus .OxItem.OxSelected .OxText > div {
border-color: rgb(128, 128, 128);
background: rgba(128, 128, 128, 0.5);
text-shadow: rgb(224, 224, 224) -1px -1px 0,
rgb(224, 224, 224) -1px 1px 0,
rgb(224, 224, 224) 1px -1px 0,
rgb(224, 224, 224) 1px 1px 0;
-moz-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
-o-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
-webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
}
.OxThemeClassic .OxIconList .OxItem > .OxText > div > .OxInfo,
.OxThemeClassic .OxInfoList .OxItem .OxText > div > .OxInfo {
color: rgb(128, 128, 128);
}
.OxThemeClassic .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.OxThemeClassic .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.OxThemeClassic .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div {
border-color: rgba(0, 0, 0, 0);
background: rgba(0, 0, 0, 0);
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.OxThemeClassic .OxTableList .OxContent {
background: rgb(240, 240, 240);
}
.OxThemeClassic .OxTableList .OxItem .OxCell {
border-right-color: rgb(224, 224, 224);
}
.OxThemeClassic .OxCustomList .OxItem:nth-child(odd),
.OxThemeClassic .OxTableList .OxItem:nth-child(odd) {
background: rgb(242, 242, 242);
}
.OxThemeClassic .OxCustomList .OxItem:nth-child(even),
.OxThemeClassic .OxTableList .OxItem:nth-child(even) {
background: rgb(238, 238, 238);
}
.OxThemeClassic .OxCustomList .OxItem.OxSelected:nth-child(odd),
.OxThemeClassic .OxTableList .OxItem.OxSelected:nth-child(odd) {
background: rgb(226, 226, 226);
}
.OxThemeClassic .OxCustomList .OxItem.OxSelected:nth-child(even),
.OxThemeClassic .OxTableList .OxItem.OxSelected:nth-child(even) {
background: rgb(222, 222, 222);
}
.OxThemeClassic .OxCustomList .OxFocus .OxItem.OxSelected:nth-child(odd),
.OxThemeClassic .OxTableList .OxFocus .OxItem.OxSelected:nth-child(odd) {
background: rgb(210, 210, 210);
}
.OxThemeClassic .OxCustomList .OxFocus .OxItem.OxSelected:nth-child(even),
.OxThemeClassic .OxTableList .OxFocus .OxItem.OxSelected:nth-child(even) {
background: rgb(206, 206, 206);
}
.OxThemeClassic .OxTableList .OxItem.OxDroppable.OxDrop:nth-child(odd) .OxCell {
background: rgb(194, 194, 194);
}
.OxThemeClassic .OxTableList .OxItem.OxDroppable.OxDrop:nth-child(even) .OxCell {
background: rgb(190, 190, 190);
}
.OxThemeClassic .OxTableList .OxHead .OxSelected {
background: -moz-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
background: -o-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
background: -webkit-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
color: rgb(0, 0, 0);
}
.OxThemeClassic .OxTableList .OxHead .OxResize .OxCenter {
background: rgb(192, 192, 192);
}
.OxThemeClassic .OxTableList .OxHead .OxSelect,
.OxThemeClassic .OxTableList .OxBar .OxClear {
border-color: rgb(192, 192, 192);
}
.OxThemeClassic .OxTableList .OxBody .OxItem .OxCell {
border-color: rgb(232, 232, 232);
}
.OxThemeClassic .OxTableList .OxItem.OxSelected .OxCell {
border-color: rgb(216, 216, 216);
}
.OxThemeClassic .OxTableList .OxFocus .OxItem.OxSelected .OxCell {
border-color: rgb(200, 200, 200);
color: rgb(0, 0, 0);
}
.OxThemeClassic .OxTableList .OxBody .OxItem .OxLine {
background: rgb(232, 232, 232);
}
/*
================================================================================
Maps
================================================================================
*/
.OxThemeClassic .OxMap .OxMapControl,
.OxThemeClassic .OxMap .OxPlaceControl {
border-color: rgb(64, 64, 64);
background: rgba(255, 255, 255, 0.75);
color: rgb(64, 64, 64);
}
.OxThemeClassic .OxTypeIcon {
border-color: rgb(0, 0, 0);
}
.OxThemeClassic .OxMapEditor .OxWarning {
border-bottom: 2px dotted rgb(255, 64, 64);
}
/*
================================================================================
Menus
================================================================================
*/
.OxThemeClassic .OxMainMenu > .OxTitle.OxSelected {
background: -moz-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
background: -o-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
background: -webkit-linear-gradient(top, rgb(208, 208, 208), rgb(176, 176, 176));
}
.OxThemeClassic .OxMenu {
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
-o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
}
.OxThemeClassic .OxMenu .OxBottom,
.OxThemeClassic .OxMenu .OxItem,
.OxThemeClassic .OxMenu .OxScrollbar,
.OxThemeClassic .OxMenu .OxSpace,
.OxThemeClassic .OxMenu .OxTop {
background: rgba(208, 208, 208, 0.96);
}
.OxThemeClassic .OxMenu .OxItem.OxSelected,
.OxThemeClassic .OxMenu .OxLine,
.OxThemeClassic .OxMenu .OxScrollbar.OxSelected {
background: rgba(192, 192, 192, 0.96);
}
.OxThemeClassic .OxMenu .OxItem.OxDisabled .OxCell {
color: rgb(160, 160, 160);
}
/*
================================================================================
Requests
================================================================================
*/
/*
================================================================================
Scrollbars
================================================================================
*/
.OxThemeClassic ::-webkit-scrollbar:horizontal {
border-top: 1px solid rgb(176, 176, 176);
border-bottom: 1px solid rgb(176, 176, 176);
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic ::-webkit-scrollbar:vertical {
border-left: 1px solid rgb(176, 176, 176);
border-right: 1px solid rgb(176, 176, 176);
background: -webkit-linear-gradient(left, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic ::-webkit-scrollbar-button:horizontal:decrement {
background: url(../png/scrollbarHorizontalDecrement.png);
}
.OxThemeClassic ::-webkit-scrollbar-button:horizontal:increment {
background: url(../png/scrollbarHorizontalIncrement.png);
}
.OxThemeClassic ::-webkit-scrollbar-button:vertical:decrement {
background: url(../png/scrollbarVerticalDecrement.png);
}
.OxThemeClassic ::-webkit-scrollbar-button:vertical:increment {
background: url(../png/scrollbarVerticalIncrement.png);
}
.OxThemeClassic ::-webkit-scrollbar-corner {
border-right: 1px solid rgb(176, 176, 176);
border-bottom: 1px solid rgb(176, 176, 176);
background: -webkit-linear-gradient(top left, rgb(224, 224, 224), rgb(160, 160, 160));
}
.OxThemeClassic ::-webkit-scrollbar-thumb {
border: 1px solid rgb(176, 176, 176);
}
.OxThemeClassic ::-webkit-scrollbar-thumb:horizontal {
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic ::-webkit-scrollbar-thumb:vertical {
background: -webkit-linear-gradient(left, rgb(224, 224, 224), rgb(192, 192, 192));
}
.OxThemeClassic ::-webkit-scrollbar-track {
border: 1px solid rgb(176, 176, 176);
}
.OxThemeClassic ::-webkit-scrollbar-track:horizontal {
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(255, 255, 255));
}
.OxThemeClassic ::-webkit-scrollbar-track:vertical {
background: -webkit-linear-gradient(left, rgb(224, 224, 224), rgb(255, 255, 255));
}
.OxThemeClassic ::-webkit-scrollbar:active,
.OxThemeClassic ::-webkit-scrollbar-thumb:active {
background: rgb(208, 208, 208);
}
/*
================================================================================
SourceViewer
================================================================================
*/
.OxThemeClassic .OxSourceViewer .OxComment {
border-color: rgb(208, 208, 208);
}
.OxThemeClassic .OxSourceViewer .OxComment code {
background-color: rgb(255, 255, 255);
box-shadow: 0 0 1px rgb(160, 160, 160);
}
.OxThemeClassic .OxSourceViewer .OxComment pre > code {
background-color: transparent;
box-shadow: none;
}
.OxThemeClassic .OxSourceViewer .OxCode {
background-color: rgb(255, 255, 255);
}
/*
================================================================================
SyntaxHighlighter
================================================================================
*/
.OxThemeClassic .OxSyntaxHighlighter {
background-color: rgb(255, 255, 255);
}
.OxThemeClassic .OxSyntaxHighlighter .OxLineNumbers {
background-color: rgb(224, 224, 224);
color: rgb(128, 128, 128);
}
.OxThemeClassic .OxSourceCode .OxComment {
color: rgb(128, 128, 128);
font-style: italic;
}
.OxThemeClassic .OxSourceCode .OxConstant {
color: rgb(128, 0, 0);
font-weight: bold;
}
.OxThemeClassic .OxSourceCode .OxError {
color: rgb(255, 255, 255);
background: rgb(255, 0, 0);
font-weight: bold;
}
.OxThemeClassic .OxSourceCode .OxIdentifier {
color: rgb(0, 0, 0);
}
.OxThemeClassic .OxSourceCode .OxKeyword {
color: rgb(0, 0, 128);
font-weight: bold;
}
.OxThemeClassic .OxSourceCode .OxLinebreak {
color: rgb(192, 192, 192);
}
.OxThemeClassic .OxSourceCode .OxMethod {
color: rgb(0, 128, 128);
}
.OxThemeClassic .OxSourceCode .OxNumber {
color: rgb(128, 0, 0);
}
.OxThemeClassic .OxSourceCode .OxObject {
color: rgb(0, 128, 128);
font-weight: bold;
}
.OxThemeClassic .OxSourceCode .OxOperator {
color: rgb(0, 0, 128);
}
.OxThemeClassic .OxSourceCode .OxProperty {
color: rgb(0, 128, 0);
font-weight: bold;
}
.OxThemeClassic .OxSourceCode .OxRegexp {
color: rgb(128, 128, 0);
}
.OxThemeClassic .OxSourceCode .OxString {
color: rgb(0, 128, 0);
}
.OxThemeClassic .OxSourceCode .OxTab {
color: rgb(192, 192, 192);
}
.OxThemeClassic .OxSourceCode .OxWhitespace {
color: rgb(192, 192, 192);
}
.OxThemeClassic .OxSourceCode .OxWhitespace.OxLeading,
.OxThemeClassic .OxSourceCode .OxWhitespace.OxTrailing {
background: rgb(255, 255, 0);
}
/*
================================================================================
Video
================================================================================
*/
.OxThemeClassic .OxAnnotation {
border-color: rgb(208, 208, 208);
}
.OxThemeClassic .OxAnnotation.OxSelected {
background: rgb(208, 208, 208);
}
.OxThemeClassic .OxSmallVideoTimeline .OxMarkerPlay {
border-color: rgba(0, 0, 0, 0.5);
}
.OxThemeClassic .OxSmallVideoTimeline .OxMarkerPlay > div {
border-color: rgba(255, 255, 255, 1);
}
.OxThemeClassic .OxSmallVideoTimeline .OxMarkerPlay.OxPaused > div {
border-color: rgba(255, 255, 255, 0.5);
}
.OxThemeClassic .OxSmallVideoTimeline .OxMarkerPlay > div > div {
border-color: rgba(0, 0, 0, 0.5);
}
.OxThemeClassic .OxVideoPlayer .OxControls.OxOnScreen {
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
}
.OxThemeClassic .OxVideoPlayer .OxFind {
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
}
.OxThemeClassic .OxVideoPlayer input.OxInput {
background-image: -moz-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(224, 224, 224, 0.75));
background-image: -o-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(224, 224, 224, 0.75));
background-image: -webkit-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(224, 224, 224, 0.75));
}
.OxThemeClassic .OxVideoPlayer .OxFind input.OxInput {
background-image: -moz-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(255, 255, 255, 0.75));
background-image: -o-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(255, 255, 255, 0.75));
background-image: -webkit-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(255, 255, 255, 0.75));
}
.OxThemeClassic .OxVideoPlayer .OxSettings > div {
background: rgba(224, 224, 224, 0.5);
}
.OxThemeClassic .OxVideoPlayer .OxSettings > div.OxSelected {
background-image: -moz-linear-gradient(top, rgba(240, 240, 240, 0.5), rgba(208, 208, 208, 0.5));
background-image: -o-linear-gradient(top, rgba(240, 240, 240, 0.5), rgba(208, 208, 208, 0.5));
background-image: -webkit-linear-gradient(top, rgba(240, 240, 240, 0.5), rgba(208, 208, 208, 0.5));
}
.OxThemeClassic .OxVideoPlayer .OxSettings > div.OxLine {
background-color: rgba(192, 192, 192, 0.5);
}
.OxThemeClassic .OxVideoPlayer .OxVolume {
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(192, 192, 192, 0.5));
}
.OxThemeClassic .OxVideoPlayer .OxVolume .OxRange .OxTrack {
background-image: -moz-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(255, 255, 255, 0.75));
background-image: -o-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(255, 255, 255, 0.75));
background-image: -webkit-linear-gradient(top, rgba(192, 192, 192, 0.75), rgba(255, 255, 255, 0.75));
}
.OxThemeClassic .OxVideoPlayer .OxVolume .OxRange .OxThumb {
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.75), rgba(192, 192, 192, 0.75));
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.75), rgba(192, 192, 192, 0.75));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.75), rgba(192, 192, 192, 0.75));
}
.OxThemeClassic .OxVideoPlayer .OxVolume .OxRange .OxThumb:active {
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 1), rgba(192, 192, 192, 1));
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 1), rgba(192, 192, 192, 1));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 1), rgba(192, 192, 192, 1));
}
/* FIXME: the first three should apply for every ArrayEditable */
.OxThemeClassic .OxAnnotationFolder .OxArrayEditable .OxSeparator {
color: rgb(96, 96, 96);
}
.OxThemeClassic .OxAnnotationFolder .OxEditableElement .OxHighlight {
border-radius: 2px;
}
.OxThemeClassic .OxAnnotationFolder .OxEditableElement.OxPlaceholder .OxValue {
color: rgb(160, 160, 160);
}
.OxThemeClassic .OxAnnotationFolder .OxEditableElement.OxWarning .OxValue {
border-bottom: 2px dotted rgb(255, 64, 64);
}
.OxThemeClassic .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxEditable.OxSelected {
background: rgb(192, 192, 255);
}
.OxThemeClassic .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxSelected .OxHighlight {
background-color: transparent;
background-image: -moz-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
rgb(255, 255, 0) 25%, rgb(255, 255, 0) 50%,
transparent 50%, transparent 75%,
rgb(255, 255, 0) 75%, rgb(255, 255, 0) 100%
);
background-image: -o-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
rgb(255, 255, 0) 25%, rgb(255, 255, 0) 50%,
transparent 50%, transparent 75%,
rgb(255, 255, 0) 75%, rgb(255, 255, 0) 100%
);
background-image: -webkit-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
rgb(255, 255, 0) 25%, rgb(255, 255, 0) 50%,
transparent 50%, transparent 75%,
rgb(255, 255, 0) 75%, rgb(255, 255, 0) 100%
);
background-size: 4px 4px;
}
.OxThemeClassic .OxAnnotationFolder .OxArrayEditableInput .OxEditableElement.OxSelected {
box-shadow: 0 0 1px rgb(64, 64, 64);
}
.OxThemeClassic .OxAnnotationFolder .OxArrayEditableTextarea .OxEditableElement.OxEditable.OxEditing {
background: rgb(160, 224, 160);
}
.OxThemeClassic .OxAnnotationFolder .OxArrayEditable .OxInput.OxFocus {
box-shadow: none;
}
.OxThemeClassic .OxAnnotationFolder .OxEditableElement input {
background: rgb(160, 224, 160);
color: rgb(0, 0, 0);
//box-shadow: 0 0 1px rgb(64, 64, 64);
}
.OxThemeClassic .OxAnnotationFolder .OxEditableElement textarea {
background: rgb(160, 224, 160);
color: rgb(0, 0, 0);
}
/*
================================================================================
Miscellaneous
================================================================================
*/
.OxThemeClassic .OxSelectableElement.OxSelected {
background: rgb(224, 224, 224);
}
.OxThemeClassic .OxSelectableElement.OxSelected.OxFocus {
background: rgb(208, 208, 208);
}
.OxThemeClassic .OxScreen {
background: rgb(224, 224, 224);
color: rgb(32, 32, 32);
}
.OxThemeClassic .OxScreen .OxReflection {
background-image: -moz-linear-gradient(top, rgba(224, 224, 224, 0.75), rgba(224, 224, 224, 1), rgba(224, 224, 224, 1));
background-image: -o-linear-gradient(top, rgba(224, 224, 224, 0.75), rgba(224, 224, 224, 1), rgba(224, 224, 224, 1));
background-image: -webkit-linear-gradient(top, rgba(224, 224, 224, 0.75), rgba(224, 224, 224, 1), rgba(224, 224, 224, 1));
}
.OxThemeClassic .OxTooltip {
border: 1px solid rgba(128, 128, 128, 0.96);
background: rgba(255, 255, 255, 0.96);
color: rgba(128, 128, 128, 1);
-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
-o-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.OxThemeClassic ::selection,
.OxThemeClassic ::-moz-selection,
.OxThemeClassic ::-o-selection,
.OxThemeClassic ::-webkit-selection {
background: rgb(192, 192, 192);
//color: rgb(255, 255, 255);
}

View file

@ -1,16 +0,0 @@
{
"color": {
"failed": [160, 0, 0],
"passed": [0, 160, 0]
},
"lightness": {
"background": 0.75,
"color": 0.25
},
"timeline": {
"default": [128, 128, 128],
"editing": [0, 0, 128],
"result": [128, 128, 0],
"selected": [0, 128, 0]
}
}

View file

@ -0,0 +1,203 @@
{
"themeName": "Light",
"themeLightnessBackground": 0.75,
"themeLightnessColor": 0.25,
"barGradient": [[224, 224, 224], [192, 192, 192]],
"barSelectedColor": [0, 0, 0],
"barSelectedGradient": [[208, 208, 208], [176, 176, 176]],
"bodyBackground": [240, 240, 240],
"bodyBorder": [208, 208, 208],
"bodyColor": [16, 16, 16],
"bodyBrightColor": [0, 0, 0],
"bodyHighlightBackground": [255, 255, 0],
"bodyHighlightColor": [16, 16, 16],
"bodyLightColor": [128, 128, 128],
"bodyWarningBorder": [255, 64, 64],
"buttonGradient": [[224, 224, 224], [192, 192, 192]],
"buttonActiveColor": [48, 48, 48],
"buttonActiveGradient": [[192, 192, 192], [192, 192, 192]],
"buttonDisabledColor": [128, 128, 128],
"buttonDisabledGradient": [[192, 192, 192], [192, 192, 192]],
"buttonSelectedColor": [32, 32, 32],
"buttonSelectedGradient": [[160, 160, 160], [192, 192, 192]],
"calendarBackground": [232, 232, 232],
"calendarControlBorder": [64, 64, 64],
"calendarControlBackground": [255, 255, 255, 0.75],
"calendarControlColor": [64, 64, 64],
"calendarEventColor": [0, 0, 0],
"calendarEventShadow": [0, 0, 0],
"calendarEventDateGradient": [[128, 128, 255, 0.9], [96, 96, 224, 0.9]],
"calendarEventOtherGradient": [[255, 128, 128, 0.9], [224, 96, 96, 0.9]],
"calendarEventPersonGradient": [[255, 128, 0, 0.9], [224, 96, 0, 0.9]],
"calendarEventPlaceGradient": [[0, 192, 96, 0.9], [0, 160, 64, 0.9]],
"calendarOverlayOddBackground": [255, 255, 255, 0.25],
"calendarOverlayEvenBackground": [0, 0, 0, 0.25],
"calendarOverlayEvenShadow": [0, 0, 0],
"calendarLineBackground": [224, 224, 224],
"calendarTimelineOddGradient": [[224, 224, 224], [192, 192, 192]],
"calendarTimelineEvenGradient": [[208, 208, 208], [176, 176, 176]],
"dialogShadow": [0, 0, 0, 0.75],
"dialogBackground": [208, 208, 208, 0.95],
"dialogBarGradient": [[224, 224, 224, 0.95], [224, 224, 224, 0.95]],
"dialogLayerBackground": [255, 255, 255],
"dialogReflectionGradient": [[208, 208, 208, 0.75], [208, 208, 208, 1]],
"documentBorder": [208, 208, 208],
"documentCodeColor": [0, 0, 64],
"documentLabelBackground": [240, 240, 240],
"documentWarningColor": [192, 0, 0],
"formelementBorder": [176, 176, 176],
"formelementColor": [64, 64, 64],
"formelementFocusShadow": [128, 128, 128],
"gridGradient": [[248, 248, 248], [232, 232, 232]],
"inputActiveGradient": [[192, 192, 192], [240, 240, 240]],
"inputDisabledGradient": [[224, 224, 224], [224, 224, 224]],
"inputErrorColor": [192, 64, 64],
"inputGradient": [[208, 208, 208], [255, 255, 255]],
"inputPlaceholderColor": [160, 160, 160],
"labelBackground": [208, 208, 208],
"labelDisabledColor": [128, 128, 128],
"linkColor": [0, 0, 128],
"listCellBorder": [232, 232, 232],
"listCellFocusSelectedBorder": [200, 200, 200],
"listCellFocusSelectedColor": [0, 0, 0],
"listCellSelectedBorder": [216, 216, 216],
"listCellSelectedColor": [16, 16, 16],
"listHeadBorder": [192, 192, 192], // wrong?
"listIconLoadingBorder": [208, 208, 208],
"listIconLoadingGradient": [[255, 255, 255], [224, 224, 224]],
"listIconFocusSelectedBorder": [128, 128, 128],
"listIconFocusSelectedShadow": [128, 128, 128],
"listIconSelectedBorder": [192, 192, 192],
"listIconSelectedShadow": [192, 192, 192],
"listIconLabelFocusSelectedBackground": [128, 128, 128, 0.5],
"listIconLabelFocusSelectedBorder": [128, 128, 128],
"listIconLabelFocusSelectedShadow": [128, 128, 128],
"listIconLabelSelectedBackground": [160, 160, 160, 0.5],
"listIconLabelSelectedBorder": [160, 160, 160],
"listIconLabelSelectedShadow": [160, 160, 160],
"listIconTextShadow": [255, 255, 255],
"listIconTextFocusSelectedShadow": [224, 224, 224],
"listIconTextSelectedShadow": [240, 240, 240],
"listItemBorder": [224, 224, 224],
"listItemOddBackground": [242, 242, 242],
"listItemEvenBackground": [238, 238, 238],
"listItemDropOddBackground": [194, 194, 194],
"listItemDropEvenBackground": [190, 190, 190],
"listItemFocusSelectedBackground": [208, 208, 208],
"listItemFocusSelectedOddBackground": [210, 210, 210],
"listItemFocusSelectedEvenBackground": [206, 206, 206],
"listItemSelectedBackground": [224, 224, 224],
"listItemSelectedOddBackground": [226, 226, 226],
"listItemSelectedEvenBackground": [222, 222, 222],
"mapControlBackground": [255, 255, 255, 0.75],
"mapControlBorder": [64, 64, 64],
"mapControlColor": [64, 64, 64],
"mapPlaceBorder": [0, 0, 0],
"mapPlaceEditingBorder": [128, 128, 255],
"mapPlaceSelectedBorder": [255, 255, 255],
"mapPlaceBoroughColor": [255, 128, 0],
"mapPlaceBuildingColor": [255, 64, 128],
"mapPlaceCityColor": [255, 0, 0],
"mapPlaceCountryColor": [64, 64, 255],
"mapPlaceFeatureColor": [0, 192, 0],
"mapPlaceRegionColor": [0, 192, 192],
"mapPlaceStreetColor": [255, 255, 0],
"menuBackground": [208, 208, 208, 0.96],
"menuShadow": [0, 0, 0, 0.75],
"menuDisabledColor": [160, 160, 160],
"menuSelectedBackground": [192, 192, 192, 0.96],
"progressbarBackground": [0, 0, 0, 0.05],
"progressbarAnimateBackground": [0, 0, 0, 0.1],
"reflectionGradient": [[240, 240, 240, 0.75], [240, 240, 240, 1]],
"screenBackground": [224, 224, 224],
"screenColor": [32, 32, 32],
"screenReflectionGradient": [[224, 224, 224, 0.75], [224, 224, 224, 1], [224, 224, 224, 1]],
"scrollbarCornerGradient": [[224, 224, 224], [160, 160, 160]],
"selectionBackground": [192, 192, 192],
"sourcecodeBackground": [255, 255, 255],
"sourcecodeCommentColor": [128, 128, 128],
"sourcecodeConstantColor": [128, 0, 0],
"sourcecodeErrorBackground": [255, 255, 255],
"sourcecodeErrorColor": [255, 255, 0],
"sourcecodeIdentifierColor": [0, 0, 0],
"sourcecodeKeywordColor": [0, 0, 128],
"sourcecodeLinenumbersBackground": [224, 224, 224],
"sourcecodeLinenumbersColor": [128, 128, 128],
"sourcecodeMethodColor": [0, 128, 128],
"sourcecodeNumberColor": [128, 0, 0],
"sourcecodeObjectColor": [0, 128, 128],
"sourcecodeOperatorColor": [0, 0, 128],
"sourcecodePropertyColor": [0, 128, 0],
"sourcecodeRegexpColor": [128, 128, 0],
"sourcecodeStringColor": [0, 128, 0],
"sourcecodeSpecialColor": [192, 192, 192],
"sourcecodeWhitespaceBackground": [255, 255, 0],
"sourceviewerCodeBackground": [255, 255, 255],
"sourceviewerCodeShadow": [160, 160, 160],
"symbolDefaultColor": [64, 64, 64],
"symbolDisabledColor": [128, 128, 128],
"symbolFailedColor": [160, 0, 0],
"symbolPassedColor": [0, 160, 0],
"symbolSelectedColor": [0, 0, 0],
"symbolVideoColor": [255, 255, 255],
"symbolWarningColor": [255, 0, 0],
"tooltipBackground": [255, 255, 255, 0.96],
"tooltipBorder": [128, 128, 128, 0.96],
"tooltipColor": [128, 128, 128],
"tooltipShadow": [0, 0, 0, 0.5],
"videoBarGradient": [[255, 255, 255, 0.5], [192, 192, 192, 0.5]],
"videoButtonGradient": [[255, 255, 255, 0.75], [192, 192, 192, 0.75]],
"videoButtonActiveGradient": [[255, 255, 255], [192, 192, 192]],
"videoInputGradient": [[192, 192, 192, 0.75], [255, 255, 255, 0.75]],
"videoMenuBackground": [224, 224, 224, 0.5],
"videoMenuBorder": [192, 192, 192, 0.5],
"videoMenuSelectedGradient": [[240, 240, 240, 0.5], [208, 208, 208, 0.5]],
"videoAnnotationEditableEditingBackground": [160, 224, 160],
"videoAnnotationEditableEditingColor": [0, 0, 0],
"videoAnnotationEditableSelectedBackground": [192, 192, 255],
"videoAnnotationEditableSelectedShadow": [64, 64, 64],
"videoAnnotationSelectedBackground": [208, 208, 208],
"videoAnnotationSeparatorColor": [96, 96, 96],
"videoMarkerBackground": [255, 255, 255],
"videoMarkerBorder": [0, 0, 0],
"videoTimelineDefaultGradient": [[32, 32, 32], [244, 244, 244]],
"videoTimelineEditableGradient": [[0, 0, 128], [128, 128, 255]],
"videoTimelineEditingGradient": [[0, 128, 0], [128, 255, 128]],
"videoTimelineResultGradient": [[0, 0, 0], [255, 255, 0]],
"videoTimelineSelectedGradient": [[0, 0, 0], [255, 255, 255]],
"videoTimelineMarkerPausedBorder": [255, 255, 255, 0.5],
"videoTimelineMarkerPlayingBorder": [255, 255, 255],
"videoTimelineMarkerShadow": [0, 0, 0, 0.5]
}

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="64,144 80,120 120,160 176,48 192,80 128,208" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 155 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="64,128 120,192" stroke-width="32" stroke="#404040"/>
<circle cx="120" cy="192" r="16" fill="#404040"/>
<polygon points="120,192 192,64" stroke-width="32" stroke="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 274 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="48,128 96,128" stroke-width="64" stroke="#404040"/>
<polygon points="64,128 144,48 144,208" fill="#404040"/>
<path d="M 160,96 a 60,60 0 0,1 0,64" fill="none" stroke-width="16" stroke="#404040"/>
<path d="M 176,64 a 96,96 0 0,1 0,128" fill="none" stroke-width="16" stroke="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 389 B

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<rect x="40" y="40" width="64" height="64" fill="#404040" stroke="#404040" stroke-width="16"/>
<line x1="144" y1="40" x2="224" y2="40" stroke="#404040" stroke-width="16"/>
<line x1="144" y1="72" x2="224" y2="72" stroke="#404040" stroke-width="16"/>
<line x1="144" y1="104" x2="224" y2="104" stroke="#404040" stroke-width="16"/>
<rect x="40" y="152" width="64" height="64" fill="#404040" stroke="#404040" stroke-width="16"/>
<line x1="144" y1="152" x2="224" y2="152" stroke="#404040" stroke-width="16"/>
<line x1="144" y1="184" x2="224" y2="184" stroke="#404040" stroke-width="16"/>
<line x1="144" y1="216" x2="224" y2="216" stroke="#404040" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 765 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<rect x="40" y="40" width="64" height="64" fill="#404040" stroke="#404040" stroke-width="16"/>
<rect x="152" y="40" width="64" height="64" fill="#404040" stroke="#404040" stroke-width="16"/>
<rect x="40" y="152" width="64" height="64" fill="#404040" stroke="#404040" stroke-width="16"/>
<rect x="152" y="152" width="64" height="64" fill="#404040" stroke="#404040" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 472 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="32" y1="40" x2="224" y2="40" stroke="#404040" stroke-width="16"/>
<line x1="32" y1="72" x2="224" y2="72" stroke="#404040" stroke-width="16"/>
<line x1="32" y1="104" x2="224" y2="104" stroke="#404040" stroke-width="16"/>
<line x1="32" y1="152" x2="224" y2="152" stroke="#404040" stroke-width="16"/>
<line x1="32" y1="184" x2="224" y2="184" stroke="#404040" stroke-width="16"/>
<line x1="32" y1="216" x2="224" y2="216" stroke="#404040" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 560 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="80,240 128,64 176,240" fill="#FFFFFF" stroke="#000000" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 168 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,244 244,32 244,244" fill="#FFFFFF" stroke="#000000" stroke-width="24"/>
</svg>

Before

Width:  |  Height:  |  Size: 168 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="8,8 88,8 88,168 248,168 248,248 8,248" fill="#FFFFFF" stroke="#000000" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 184 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="8,8 248,8 248,88 88,88 88,248 8,248" fill="#FFFFFF" stroke="#000000" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 182 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="12,32 224,244 12,244" fill="#FFFFFF" stroke="#000000" stroke-width="24"/>
</svg>

Before

Width:  |  Height:  |  Size: 167 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="168,8 248,8 248,248 8,248 8,168 168,168" fill="#FFFFFF" stroke="#000000" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 186 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="8,8 248,8 248,248 168,248 168,88 8,88" fill="#FFFFFF" stroke="#000000" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 184 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="16,8 240,8 128,128" fill="#FFFFFF" stroke="#000000" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 165 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="48">
<line x1="128" y1="16" x2="128" y2="240"/>
<line x1="16" y1="128" x2="240" y2="128"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 231 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="128" y1="0" x2="128" y2="128" stroke="#404040" stroke-width="48"/>
<polygon points="32,128 224,128 128,256" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 215 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="0,128 128,32 128,224" fill="#404040"/>
<line x1="128" y1="128" x2="256" y2="128" stroke="#404040" stroke-width="48"/>
</svg>

Before

Width:  |  Height:  |  Size: 215 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="0" y1="128" x2="128" y2="128" stroke="#404040" stroke-width="48"/>
<polygon points="128,32 256,128 128,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 215 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,128 128,0 224,128" fill="#404040"/>
<line x1="128" y1="128" x2="128" y2="256" stroke="#404040" stroke-width="48"/>
</svg>

Before

Width:  |  Height:  |  Size: 215 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="64,48 224,16 224,64 64,96" fill="#404040"/>
<line x1="80" y1="80" x2="80" y2="208" stroke="#404040" stroke-width="32"/>
<line x1="208" y1="48" x2="208" y2="176" stroke="#404040" stroke-width="32"/>
<ellipse cx="56" cy="208" rx="40" ry="32" fill="#404040" transform="rotate(-15,56,208)"/>
<ellipse cx="184" cy="176" rx="40" ry="32" fill="#404040" transform="rotate(-15,184,176)"/>
</svg>

Before

Width:  |  Height:  |  Size: 495 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040">
<path d="M 20,28 l 108,36 l 108,-36" stroke-width="24"/>
<path d="M 224,32 l 0,160 l -96,32 l -96,-32 l 0,-160" stroke-width="32"/>
<line x1="128" y1="64" x2="128" y2="224" stroke-width="24"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 335 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="72,32 184,32 184,240 128,144 72,240" fill="#404040" stroke="#404040" stroke-width="0"/>
</svg>

Before

Width:  |  Height:  |  Size: 181 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 80,24 a 312,208 0 0,0 0,208" fill="none" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<path d="M 176,24 a 312,208 0 0,1 0,208" fill="none" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<!--
<path d="M 96,24 a 56,56 0 0,0 -56,56 l 0,96 a 56,56 0 0,0 56,56" fill="none" stroke="#404040" stroke-width="48"/>
<path d="M 160,24 a 56,56 0 0,1 56,56 l 0,96 a 56,56 0 0,1 -56,56" fill="none" stroke="#404040" stroke-width="48"/>
-->
</svg>

Before

Width:  |  Height:  |  Size: 561 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<circle cx="128" cy="128" r="80" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 126 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="#404040">
<ellipse cx="128" cy="112" rx="112" ry="80"/>
<polygon points="64,248 80,176 160,176"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 208 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 48,144 l 64,64 l 96,-160" fill="none" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<!--
<line x1="32" y1="128" x2="112" y2="224" stroke="#404040" stroke-width="48"/>
<circle cx="112" cy="224" r="24" fill="#404040"/>
<line x1="112" y1="224" x2="208" y2="32" stroke="#404040" stroke-width="48"/>
-->
</svg>

Before

Width:  |  Height:  |  Size: 420 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<circle cx="128" cy="128" r="96" fill="none" stroke="#404040" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 158 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g transform="rotate(-25, 128, 128)">
<polygon points="128,0 208,176 128,144 48,176" fill="#404040"/>
<line x1="128" y1="128" x2="128" y2="256" stroke="#404040" stroke-width="48"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 282 B

View file

@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<circle cx="128" cy="128" r="112"/>
<path d="M 80,104 l 48,32 l 64,-48"/>
<!--
<g stroke-width="16">
<line x1="128" y1="16" x2="128" y2="64"/>
<line x1="240" y1="128" x2="192" y2="128"/>
<line x1="128" y1="240" x2="128" y2="192"/>
<line x1="16" y1="128" x2="64" y2="128"/>
</g>
-->
</g>
</svg>

Before

Width:  |  Height:  |  Size: 514 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="48">
<line x1="40" y1="40" x2="216" y2="216"/>
<line x1="40" y1="216" x2="216" y2="40"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 225 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="32" y="32" width="192" height="192"/>
<line x1="96" y1="32" x2="96" y2="224"/>
<line x1="160" y1="32" x2="160" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 291 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<circle cx="128" cy="128" r="112" fill="none"/>
<path d="M 168,168 a 56,56 0 1,1 0,-80"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 242 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<ellipse cx="128" cy="64" rx="100" ry="36" fill="none" stroke="#404040" stroke-width="24"/>
<path d="M 28,128 a 96,36 0 0,0 200,0" fill="none" stroke="#404040" stroke-width="24"/>
<path d="M 28,192 a 96,36 0 0,0 200,0" fill="none" stroke="#404040" stroke-width="24"/>
</svg>

Before

Width:  |  Height:  |  Size: 356 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="48">
<circle cx="128" cy="128" r="104" fill="none"/>
<line x1="40" y1="40" x2="216" y2="216"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 230 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" fill="none">
<path d="M 16,64 l 224,0 0,144 -224,0 0,-144 8,0" stroke-width="32"/>
<path d="M 9,56 l 44,-44 44,0 44,44" stroke-width="24"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 262 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,56 224,56 128,248" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 132 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="128" y1="16" x2="128" y2="128" stroke="#404040" stroke-width="96"/>
<polygon points="0,128 256,128 128,256" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 215 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,224 64,160 96,192" fill="#404040"/>
<line x1="88" y1="168" x2="184" y2="72" stroke="#404040" stroke-width="48"/>
<line x1="192" y1="64" x2="208" y2="48" stroke="#404040" stroke-width="48"/>
<line x1="112" y1="220" x2="224" y2="220" stroke="#404040" stroke-width="8"/>
<line x1="128" y1="204" x2="224" y2="204" stroke="#404040" stroke-width="8"/>
<line x1="144" y1="188" x2="224" y2="188" stroke="#404040" stroke-width="8"/>
</svg>

Before

Width:  |  Height:  |  Size: 541 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="88" y1="56" x2="24" y2="128" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<line x1="24" y1="128" x2="88" y2="200" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<line x1="168" y1="56" x2="232" y2="128" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<line x1="232" y1="128" x2="168" y2="200" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
</svg>

Before

Width:  |  Height:  |  Size: 490 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" fill="none">
<path d="M 208,72 l 0,168 -160,0 0,-224 104,0" stroke-width="32"/>
<path d="M 144,9 l 72,72" stroke-width="24"/>
<path d="M 144,16 l 0,64 64,0" stroke-width="24"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 307 B

View file

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" fill="none" stroke-width="24">
<path d="M 208,72 l 0,168 -160,0 0,-224 104,0" stroke-width="32"/>
<path d="M 144,9 l 72,72"/>
<path d="M 144,16 l 0,64 64,0"/>
<line x1="128" y1="112" x2="128" y2="208"/>
<line x1="80" y1="160" x2="176" y2="160"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 391 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="64,64 128,0 192,64" fill="#404040"/>
<rect x="32" y="96" width="192" height="64" fill="#404040"/>
<polygon points="64,192 192,192 128,256" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 258 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="48">
<circle cx="104" cy="104" r="64" fill="none"/>
<line x1="160" y1="160" x2="216" y2="216"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 232 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="64,16 192,16 128,80" fill="#404040"/>
<rect x="32" y="96" width="192" height="64" fill="#404040"/>
<polygon points="64,240 128,176 192,240" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 259 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="48" y1="224" x2="48" y2="32" stroke="#404040" stroke-width="32"/>
<path d="M 64,32 a 64,64 0 0,1 80,0 a 64,64 0 0,0 80,0 l 0,128 a 64,64 0 0,1 -80,0 a 64,64 0 0,0 -80,0" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 277 B

View file

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="24">
<path d="M 44,112 l 0,-68 l 68,0"/>
<path d="M 144,44 l 68,0 l 0,68"/>
<path d="M 212,144 l 0,68 l -68,0"/>
<path d="M 112,212 l -68,0 l 0,-68"/>
</g>
<circle cx="128" cy="128" r="16" fill="#404040" stroke="none"/>
</svg>

Before

Width:  |  Height:  |  Size: 382 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="64" y1="32" x2="64" y2="224" stroke="#404040" stroke-width="48"/>
<polygon points="120,128 216,32 216,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 214 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="40,32 136,128 40,224" fill="#404040"/>
<line x1="192" y1="32" x2="192" y2="224" stroke="#404040" stroke-width="48"/>
</svg>

Before

Width:  |  Height:  |  Size: 214 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="40,32 136,128 40,224" fill="#404040"/>
<line x1="128" y1="48" x2="208" y2="48" stroke="#404040" stroke-width="32"/>
<line x1="192" y1="32" x2="192" y2="224" stroke="#404040" stroke-width="32"/>
<line x1="208" y1="208" x2="128" y2="208" stroke="#404040" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 378 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="32" y="32" width="64" height="64"/>
<rect x="160" y="32" width="64" height="64"/>
<rect x="32" y="160" width="64" height="64"/>
<rect x="160" y="160" width="64" height="64"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 352 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="32" y="40" width="64" height="48"/>
<rect x="160" y="40" width="64" height="48"/>
<rect x="32" y="168" width="64" height="48"/>
<rect x="160" y="168" width="64" height="48"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 352 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="32" y="40" width="64" height="48"/>
<rect x="168" y="32" width="48" height="64"/>
<rect x="32" y="168" width="64" height="48"/>
<rect x="168" y="160" width="48" height="64"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 352 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="40" y="32" width="48" height="64"/>
<rect x="168" y="32" width="48" height="64"/>
<rect x="40" y="160" width="48" height="64"/>
<rect x="168" y="160" width="48" height="64"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 352 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="40" y="32" width="48" height="64"/>
<rect x="160" y="40" width="64" height="48"/>
<rect x="40" y="160" width="48" height="64"/>
<rect x="160" y="168" width="64" height="48"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 352 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,32 128,32 32,128" fill="#404040"/>
<line x1="72" y1="72" x2="120" y2="120" stroke="#404040" stroke-width="48"/>
<line x1="136" y1="136" x2="184" y2="184" stroke="#404040" stroke-width="48"/>
<polygon points="128,224 224,128 224,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 359 B

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 80,72 a 48,48 0 1,1 88,32 l -40,48" fill="none" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<!--
<path d="M 72,72 a 56,56 0 1,1 96,48 a 128,128 0 0,0 -40,48" fill="none" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
-->
<circle cx="128" cy="224" r="32" fill="#404040"/>
<!--
<circle cx="128" cy="232" r="24" fill="#404040"/>
-->
</svg>

Before

Width:  |  Height:  |  Size: 474 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<path d="M 16,136 l 112,-112 112,112"/>
<path d="M 56,96 l 0,128 144,0 0,-128"/>
<rect x="110" y="86" width="36" height="36" stroke-width="12"/>
<rect x="110" y="150" width="36" height="64" stroke-width="12"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 378 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 80,32 l 96,0 a 48,48 0 0,1 48,48 l 0,96 a 48,48 0 0,1 -48,48 l -96,0 a 48,48 0 0,1 -48,-48 l 0,-96 a 48,48 0 0,1 48,-48" fill="none" stroke="#404040" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 257 B

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="32" y="32" width="64" height="64"/>
<line x1="144" y1="32" x2="240" y2="32"/>
<line x1="144" y1="96" x2="240" y2="96"/>
<rect x="32" y="160" width="64" height="64"/>
<line x1="144" y1="160" x2="240" y2="160"/>
<line x1="144" y1="224" x2="240" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 447 B

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="32" y="40" width="64" height="48"/>
<line x1="144" y1="32" x2="240" y2="32"/>
<line x1="144" y1="96" x2="240" y2="96"/>
<rect x="32" y="168" width="64" height="48"/>
<line x1="144" y1="160" x2="240" y2="160"/>
<line x1="144" y1="224" x2="240" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 447 B

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="32">
<rect x="40" y="32" width="48" height="64"/>
<line x1="144" y1="32" x2="240" y2="32"/>
<line x1="144" y1="96" x2="240" y2="96"/>
<rect x="40" y="160" width="48" height="64"/>
<line x1="144" y1="160" x2="240" y2="160"/>
<line x1="144" y1="224" x2="240" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 447 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<circle cx="128" cy="48" r="32" fill="#404040"/>
<line x1="96" y1="112" x2="128" y2="112" stroke="#404040" stroke-linecap="round" stroke-width="32"/>
<line x1="128" y1="120" x2="128" y2="216" stroke="#404040" stroke-linecap="round" stroke-width="48"/>
<line x1="96" y1="224" x2="160" y2="224" stroke="#404040" stroke-linecap="round" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 441 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="8,128 200,32 200,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 132 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 128,248 l -96,-128 a 56,56 0 1,1 96,-64 a 56,56 0 1,1 96,64 l -96,128" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 175 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="32">
<line x1="16" y1="32" x2="240" y2="32"/>
<line x1="16" y1="96" x2="240" y2="96"/>
<line x1="16" y1="160" x2="240" y2="160"/>
<line x1="16" y1="224" x2="240" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 324 B

View file

@ -1,16 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g transform="translate(128, 128)" stroke="#000000" stroke-linecap="round" stroke-width="28">
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(0)" opacity="1"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(30)" opacity="0.083333"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(60)" opacity="0.166667"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(90)" opacity="0.25"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(120)" opacity="0.333333"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(150)" opacity="0.416667"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(180)" opacity="0.5"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(210)" opacity="0.583333"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(240)" opacity="0.666667"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(270)" opacity="0.75"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(300)" opacity="0.833333"/>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(330)" opacity="0.916667"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,40 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g transform="translate(128, 128)" stroke="#000000" stroke-linecap="round" stroke-width="28">
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(0)" opacity="1">
<animate attributeName="opacity" from="1" to="0" begin="0s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(30)" opacity="0.083333">
<animate attributeName="opacity" from="1" to="0" begin="-0.916667s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(60)" opacity="0.166667">
<animate attributeName="opacity" from="1" to="0" begin="-0.833333s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(90)" opacity="0.25">
<animate attributeName="opacity" from="1" to="0" begin="-0.75s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(120)" opacity="0.333333">
<animate attributeName="opacity" from="1" to="0" begin="-0.666667s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(150)" opacity="0.416667">
<animate attributeName="opacity" from="1" to="0" begin="-0.583333s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(180)" opacity="0.5">
<animate attributeName="opacity" from="1" to="0" begin="-0.5s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(210)" opacity="0.583333">
<animate attributeName="opacity" from="1" to="0" begin="-0.416667" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(240)" opacity="0.666667">
<animate attributeName="opacity" from="1" to="0" begin="-0.333333s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(270)" opacity="0.75">
<animate attributeName="opacity" from="1" to="0" begin="-0.25s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(300)" opacity="0.833333">
<animate attributeName="opacity" from="1" to="0" begin="-0.166667s" dur="1s" repeatCount="indefinite"></animate>
</line>
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(330)" opacity="0.916667">
<animate attributeName="opacity" from="1" to="0" begin="-0.083333" dur="1s" repeatCount="indefinite"></animate>
</line>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="104,152, 0,152 224,32 104,255" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 142 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<rect x="40" y="112" width="176" height="104" fill="#404040"/>
<path d="M 184,128 l 0,-48 a 56,56 0 0,0 -112,0" fill="none" stroke="#404040" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 241 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#404040" stroke-width="24">
<rect x="28" y="60" width="200" height="136"/>
<path d="M 28,60 l 100,100 l 100,-100"/>
<line x1="28" y1="196" x2="92" y2="132" stroke-width="12"/>
<line x1="162" y1="132" x2="228" y2="196" stroke-width="12"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 378 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 128,248 l -64,-112 a 72,72 0 1,1 128,0 l -64,112 l 0,-124 l 1,0 a 20,20 0 1,0 -2,0 l 1,0 l 0,124" fill="#404040" stroke="none"/>
</svg>

Before

Width:  |  Height:  |  Size: 216 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="48,80 128,0 208,80" fill="#404040"/>
<line x1="48" y1="128" x2="208" y2="128" stroke="#404040" stroke-width="48"/>
<polygon points="48,176 208,176 128,256" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 274 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<rect x="16" y="88" width="64" height="80" fill="#404040"/>
<polygon points="40,128 144,24 144,232" fill="#404040"/>
<path d="M 160,96 a 48,48 0 0,1 0,64" fill="none" stroke="#404040" stroke-width="16"/>
<path d="M 176,64 a 88,88 0 0,1 0,128" fill="none" stroke="#404040" stroke-width="16"/>
<path d="M 192,32 a 128,128 0 0,1 0,192" fill="none" stroke="#404040" stroke-width="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 474 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g fill="none" stroke="#FF0000" stroke-width="24">
<path d="M 173,173 a 64,64 0 1,1 0,-90" stroke="#404040" stroke-width="32"/>
<circle cx="128" cy="128" r="116" fill="none"/>
<line x1="40" y1="216" x2="216" y2="40"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 327 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256"/>

Before

Width:  |  Height:  |  Size: 66 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="48" y1="208" x2="208" y2="48" stroke="#404040" stroke-width="48"/>
<polygon points="80,32 224,32 224,176" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 213 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="48">
<line x1="80" y1="32" x2="80" y2="224"/>
<line x1="176" y1="32" x2="176" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 224 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="72" y1="32" x2="72" y2="224" stroke="#404040" stroke-width="48"/>
<polygon points="144,32 240,128 144,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 214 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,32 128,128 32,224" fill="#404040"/>
<polygon points="160,32 255,128 160,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 194 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="223,32 128,128 224,224" fill="#404040"/>
<polygon points="96,32 0,128 96,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 192 B

View file

@ -1,12 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="32">
<line x1="16" y1="32" x2="48" y2="32"/>
<line x1="80" y1="32" x2="240" y2="32"/>
<line x1="16" y1="96" x2="48" y2="96"/>
<line x1="80" y1="96" x2="240" y2="96"/>
<line x1="16" y1="160" x2="48" y2="160"/>
<line x1="80" y1="160" x2="240" y2="160"/>
<line x1="16" y1="224" x2="48" y2="224"/>
<line x1="80" y1="224" x2="240" y2="224"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 520 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<circle cx="68" cy="188" r="28" fill="#404040"/>
<path d="M 40,104 a 112,112 0 0,1 112,112" fill="none" stroke="#404040" stroke-width="32"/>
<path d="M 40,40 a 176,176 0 0,1 176,176" fill="none" stroke="#404040" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 316 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<circle cx="128" cy="128" r="80" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 126 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 208,144 a 80,80 0 1,1 -80,-80 l 16,0" fill="none" stroke-width="48" stroke="#404040"/>
<polygon points="128,0 232,64 128,128" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 234 B

View file

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g stroke="#404040" stroke-width="48">
<line x1="16" y1="128" x2="240" y2="128"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 175 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 24,128 a 64,64 0 0,1 64,-64 l 80,0" fill="none" stroke="#404040" stroke-width="48"/>
<polygon points="168,0 232,64 168,128" fill="#404040" stroke="#404040" stroke-width="1"/>
<path d="M 232,128 a 64,64 0 0,1 -64,64 l -80,0" fill="none" stroke="#404040" stroke-width="48"/>
<polygon points="88,128 24,192 88,255" fill="#404040" stroke="#404040" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 462 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 0,128 l 192,0" fill="none" stroke="#404040" stroke-width="48"/>
<polygon points="192,64 255,128 192,192" fill="#404040" stroke="#404040" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 247 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<path d="M 24,128 a 64,64 0 0,1 64,-64 l 80,0" fill="none" stroke="#404040" stroke-width="48"/>
<polygon points="168,0 232,64 168,128" fill="#404040" stroke="#404040" stroke-width="1"/>
<path d="M 232,128 a 64,64 0 0,1 -64,64 l -32,0" fill="none" stroke="#404040" stroke-width="48"/>
<circle cx="64" cy="192" r="40" fill="none" stroke="#404040" stroke-width="48"/>
</svg>

Before

Width:  |  Height:  |  Size: 453 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="56,32 248,128 56,224" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 133 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="32,104 128,8 224,104" fill="#404040"/>
<polygon points="32,152 224,152 128,248" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 195 B

View file

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<g transform="translate(128, 128)">
<circle cx="0" cy="0" r="64" fill="none" stroke="#404040" stroke-width="64"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(0)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(45)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(90)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(135)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(180)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(225)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(270)" fill="#404040"/>
<rect x="-24" y="-128" width="48" height="48" transform="rotate(315)" fill="#404040"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 963 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="16,208 208,16 208,208" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 133 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<polygon points="48,16 240,208 48,208" fill="#404040"/>
</svg>

Before

Width:  |  Height:  |  Size: 132 B

View file

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<rect x="80" y="48" width="96" height="160" fill="none" stroke="#404040" stroke-width="32"/>
</svg>

Before

Width:  |  Height:  |  Size: 169 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<line x1="40" y1="40" x2="96" y2="96" stroke="#404040" stroke-width="48"/>
<polygon points="32,128 128,32 128,128" fill="#404040"/>
<polygon points="128,128 224,128 128,224" fill="#404040"/>
<line x1="160" y1="160" x2="216" y2="216" stroke="#404040" stroke-width="48"/>
</svg>

Before

Width:  |  Height:  |  Size: 359 B

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
<!--<path d="M 0,192 l 32,0 l 128,-128 l 32,0" fill="none" stroke="#404040" stroke-width="48"/>-->
<path d="M 0,192 a 80,80 0 0,0 56,-24 l 80,-80 a 80,80 0 0,1 56,-24 l 8,0" fill="none" stroke="#404040" stroke-width="48"/>
<polygon points="192,0 255,64 192,128" fill="#404040" stroke="#404040" stroke-width="1"/>
<!--<path d="M 0,64 l 32,0 l 32,32" fill="none" stroke="#404040" stroke-width="48"/>-->
<path d="M 0,64 a 80,80 0 0,1 56,24 l 8,8" fill="none" stroke="#404040" stroke-width="48"/>
<!--<path d="M 128,160 l 32,32 l 32,0" fill="none" stroke="#404040" stroke-width="48"/>-->
<path d="M 128,160 l 8,8 a 80,80 0 0,0 56,24 l 8,0" fill="none" stroke="#404040" stroke-width="48"/>
<polygon points="192,128 255,192 192,255" fill="#404040" stroke="#404040" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 882 B

Some files were not shown because too many files have changed in this diff Show more