Bug 577322 - Eclipse TLP Github migration

Images repo moved to github

Change-Id: I1960894e65167382a3a00cc6d3fbd512e646a1d8
Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.images/+/190805
Tested-by: Alexander Kurtakov <akurtako@redhat.com>
Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/MOVED_TO_GITHUB.md b/MOVED_TO_GITHUB.md
new file mode 100644
index 0000000..3ce2d1a
--- /dev/null
+++ b/MOVED_TO_GITHUB.md
@@ -0,0 +1 @@
+This repository is now moved to GitHub: https://github.com/eclipse-platform/eclipse.platform.images
diff --git a/org.eclipse.images.renderer/.classpath b/org.eclipse.images.renderer/.classpath
deleted file mode 100644
index 32f3561..0000000
--- a/org.eclipse.images.renderer/.classpath
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="src" output="target/classes" path="src/main/java">
-		<attributes>
-			<attribute name="optional" value="true"/>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
-		<attributes>
-			<attribute name="optional" value="true"/>
-			<attribute name="maven.pomderived" value="true"/>
-			<attribute name="test" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
-		<attributes>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
-		<attributes>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>
diff --git a/org.eclipse.images.renderer/.gitignore b/org.eclipse.images.renderer/.gitignore
deleted file mode 100644
index 1fa817f..0000000
--- a/org.eclipse.images.renderer/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-target/
-.settings/
diff --git a/org.eclipse.images.renderer/.project b/org.eclipse.images.renderer/.project
deleted file mode 100644
index cb0a9a8..0000000
--- a/org.eclipse.images.renderer/.project
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>org.eclipse.images.renderer</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-		<buildCommand>
-			<name>org.eclipse.m2e.core.maven2Builder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-		<nature>org.eclipse.m2e.core.maven2Nature</nature>
-	</natures>
-</projectDescription>
diff --git a/org.eclipse.images.renderer/README.md b/org.eclipse.images.renderer/README.md
deleted file mode 100644
index 4546d93..0000000
--- a/org.eclipse.images.renderer/README.md
+++ /dev/null
@@ -1,100 +0,0 @@
-org.eclipse.images.renderer
-==============================
-
-`org.eclipse.images` provides the a Maven generator of svg images located in the `org.eclipse.images` plug-in.
-
-org.eclipse.images.renderer plug-in usage
---------------------------------------------
-
-Install the `org.eclipse.images.renderer` plug-in:
-
-Go to the project root i.e. `eclipse.platform.images`:
-
-```
-cd eclipse.platform.images
-```
-
-and run:
-
-```
-mvn clean install
-```
-
-After the renderer plugin is installed, change into the root of the images project:
-
-```
-cd org.eclipse.images
-```
-
-Finally, execute the icon render mojo with:
-
-```
-mvn org.eclipse.images:org.eclipse.images.renderer:render-icons
-```
-
-This renders all of the svg icons in "`eclipse-svg`" into the "`eclipse-png`" folder of the `org.eclipse.images` project, maintaining the directory structure (i.e. `eclipse-svg/icondir` will be rendered into `org.eclipse.images/eclipse-png/icondir`).
-
-To render scaled images execute the icon render mojo with:
-
-```
-mvn org.eclipse.images:org.eclipse.images.renderer:render-icons -Declipse.svg.scale=2 -Declipse.svg.createFragments=false
-```
-
-This renders scaled images out of all of the svg icons in "`eclipse-svg`" into the "`eclipse-png`" folder of the `org.eclipse.images` project, maintaining the directory structure (i.e. `eclipse-svg/icondir` will be rendered into `org.eclipse.images/eclipse-png/icondir`).
-
-Supported runtime arguments are:
-
-* `eclipse.svg.scale`           - an integer that is used to scale output images (e.g. 2 will render a 16x16 svg at 32x32)
-* `eclipse.svg.createFragments`  - a boolean that specifies whether to create separate fragments or putting the high resolution icons next to the low-resolution icons (defaults to "`true`")
-* `eclipse.svg.renderthreads`    - an integer that specifies how many threads to use simultaneously while rendering
-* `eclipse.svg.sourcedirectory`  - a string that specifies the directory name where the SVGs are taken from (defaults to "`eclipse-svg`")
-* `eclipse.svg.targetdirectory`  - a string that specifies the directory name where the PNGs are written to (defaults to "`eclipse-png`")
-
-Note: The renderer always renders all svg icons. The renderer may produce binary different png files (that look identical) on different hardware. So it's a good idea only to commit the files that "really" did change and reset the changes to all the other files.
-
-
-## SASS/CSS Stylesheet Rendering (Experimental)
-
-Icons can be rendered using an alternate stylesheet theme, which are located in `eclipse-css`. Rendering with stylesheets
-requires the open source SASS stylesheet preprocessor to be installed on your system and available on your system path.
-
-To enable stylesheet rendering, simply specify the `eclipse.svg.stylesheet` property when invoking the render-icons mojo.
-If no stylesheet theme is specified, the inline styles from the SVG document are used.
-
-The original icon theme is available as the "stock" theme, located in eclipse-css/styles.
-
-Stylesheet options:
-
-* `eclipse.svg.stylesheet` - the name of a style theme in the eclipse-css/styles folder to use when rendering icons
-* `eclipse.svg.stylesheet.regenerate` - if true, all SASS stylesheets will be processed into CSS, replacing the current CSS files
-
-New themes can be created by using the Create CSS Theme mojo:
-
-```
-mvn org.eclipse.images:org.eclipse.images.renderer:create-css-theme -Declipse.svg.newThemeName=myThemeName
-```
-
-This will create a copy of the "stock" theme, which is the original set of Eclipse styles for the icons renamed with
-"myThemeName." The resulting SASS styles are available in each icon root for tweaking and modification.
-
-Once the icon sets have been rendered, you can create galleries for evaluation and feedback with the gallery mojo:
-
-```
-mvn org.eclipse.images:org.eclipse.images.renderer:render-galleries
-```
-
-This will create a set of galleries and gif comparisons comprised of the newly rendered icons, located in the target/ output directory.
-
-Supported runtime arguments :
-
-* `eclipse.svg.pngdirectory` - a string that specifies the directory name where the PNGs are taken from (defaults to "eclipse-png")
-* `eclipse.svg.gifdirectory` - a string that specifies the directory name where the GIFs are taken from (defaults to "eclipse-gif")
-
-License
--------
-
-[Eclipse Public License (EPL) v1.0][2]
-
-[1]: http://wiki.eclipse.org/Platform_UI
-[2]: http://wiki.eclipse.org/EPL
-[3]: https://bugs.eclipse.org/493994
\ No newline at end of file
diff --git a/org.eclipse.images.renderer/pom.xml b/org.eclipse.images.renderer/pom.xml
deleted file mode 100644
index adc73d1..0000000
--- a/org.eclipse.images.renderer/pom.xml
+++ /dev/null
@@ -1,146 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  (c) Copyright 2013 l33t labs LLC and others.
-  All rights reserved. This program and the accompanying materials
-  are made available under the terms of the Eclipse Distribution License v1.0
-  which accompanies this distribution, and is available at
-  http://www.eclipse.org/org/documents/edl-v10.php
-
-  Contributors:
-     Tony McCrary - initial implementation
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.eclipse.images</groupId>
-	<artifactId>org.eclipse.images.renderer</artifactId>
-	<version>1.0.100-SNAPSHOT</version>
-	<name>Eclipse Images SVG Renderer Plugin</name>
-	<parent>
-		<artifactId>org.eclipse.images.parent</artifactId>
-		<groupId>eclipse.images</groupId>
-		<version>4.23.0-SNAPSHOT</version>
-		<relativePath>../</relativePath>
-	</parent>
-	<packaging>maven-plugin</packaging>
-
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.maven</groupId>
-			<artifactId>maven-plugin-api</artifactId>
-			<version>3.8.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.maven</groupId>
-			<artifactId>maven-core</artifactId>
-			<version>3.8.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.twdata.maven</groupId>
-			<artifactId>mojo-executor</artifactId>
-			<version>2.3.2</version>
-		</dependency>
-		<!--
-			Image Filtering Library
-			License: Apache License, Version 2.0
-			http://www.jhlabs.com/ip/filters/
-		-->
-		<dependency>
-			<groupId>com.jhlabs</groupId>
-			<artifactId>filters</artifactId>
-			<version>2.0.235-1</version>
-		</dependency>
-		<!--
-			Advanced Image Scaling Library
-			License: New BSD License
-			https://code.google.com/p/java-image-scaling/
-		-->
-		<dependency>
-			<groupId>com.mortennobel</groupId>
-			<artifactId>java-image-scaling</artifactId>
-			<version>0.8.6</version>
-		</dependency>
-		<!--
-			Batik SVG Rendering Library
-			License: Apache License, Version 2.0
-			http://xmlgraphics.apache.org/batik/
-		-->
-		<dependency>
-			<groupId>org.apache.xmlgraphics</groupId>
-			<artifactId>batik-rasterizer</artifactId>
-			<version>1.14</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.xmlgraphics</groupId>
-			<artifactId>batik-codec</artifactId>
-			<version>1.14</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.xmlgraphics</groupId>
-			<artifactId>batik-anim</artifactId>
-			<version>1.14</version>
-		</dependency>
-	</dependencies>
-
-	<build>
-		<plugins>
-		<!--
-			Setup Java 1.8 output
-		-->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>3.9.0</version>
-				<configuration>
-					<source>11</source>
-					<target>11</target>
-				</configuration>
-			</plugin>
-			<plugin>
-				<artifactId>maven-plugin-plugin</artifactId>
-				<version>3.6.4</version>
-				<configuration>
-					<goalPrefix>eclipse-images-renderer</goalPrefix>
-				</configuration>
-			</plugin>
-		</plugins>
-		<pluginManagement>
-			<plugins>
-				<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
-				<plugin>
-					<groupId>org.eclipse.m2e</groupId>
-					<artifactId>lifecycle-mapping</artifactId>
-					<version>1.0.0</version>
-					<configuration>
-						<lifecycleMappingMetadata>
-							<pluginExecutions>
-								<pluginExecution>
-									<pluginExecutionFilter>
-										<groupId>
-											org.apache.maven.plugins
-										</groupId>
-										<artifactId>
-											maven-plugin-plugin
-										</artifactId>
-										<versionRange>
-											[2.3,)
-										</versionRange>
-										<goals>
-											<goal>descriptor</goal>
-										</goals>
-									</pluginExecutionFilter>
-									<action>
-										<ignore></ignore>
-									</action>
-								</pluginExecution>
-							</pluginExecutions>
-						</lifecycleMappingMetadata>
-					</configuration>
-				</plugin>
-			</plugins>
-		</pluginManagement>
-	</build>
-
-</project>
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/CreateCSSThemeMojo.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/CreateCSSThemeMojo.java
deleted file mode 100644
index 2e2e64f..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/CreateCSSThemeMojo.java
+++ /dev/null
@@ -1,148 +0,0 @@
-/*******************************************************************************
- * (c) Copyright 2016 l33t labs LLC and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     l33t labs LLC and others - initial contribution
- *******************************************************************************/
-
-package org.eclipse.images.renderer;
-
-import java.io.File;
-import java.io.IOException;
-import java.nio.charset.StandardCharsets;
-import java.nio.file.Files;
-import java.util.Arrays;
-
-import org.apache.commons.io.FileUtils;
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.plugin.logging.Log;
-
-/**
- * <p>
- * Creates an icon CSS theme based on the current "stock" theme.
- * </p>
- * 
- * @goal create-css-theme
- * @phase generate-resources
- *
- */
-public class CreateCSSThemeMojo extends AbstractMojo {
-
-	/** Maven logger */
-	Log log;
-
-	/** */
-	private String newThemeName;
-
-	/** */
-	private String targetDir;
-
-	/** */
-	private File styleDirectoryRoot;
-
-	/**
-	 * 
-	 */
-	@Override
-	public void execute() throws MojoExecutionException, MojoFailureException {
-		log = getLog();
-
-		newThemeName = System.getProperty("eclipse.svg.newThemeName");
-		if (newThemeName == null) {
-			throw new MojoExecutionException("Undefined theme name, specify -Declipse.svg.newThemeName=themeName");
-		}
-
-		targetDir = "eclipse-css";
-
-		styleDirectoryRoot = new File(targetDir + "/");
-
-		if (!styleDirectoryRoot.exists()) {
-			throw new MojoExecutionException("Source directory' " + targetDir + "' does not exist.");
-		}
-
-		Arrays.stream(styleDirectoryRoot.listFiles()).filter(this::isThemeFile).forEach(this::generateThemeDir);
-
-	}
-
-	/**
-	 * 
-	 * @param file
-	 * @return
-	 */
-	private boolean isThemeFile(File file) {
-		return !file.isDirectory() || !"styles".equals(file.getName());
-	}
-
-	/**
-	 * 
-	 * @param file
-	 */
-	private void generateThemeDir(File file) {
-		String dirName = file.getName();
-
-		// Where to place the rendered icon
-		String child = dirName;
-		File outputBase = new File(targetDir, child);
-
-		File styleDir = new File(outputBase, "styles/");
-		File stockDir = new File(styleDir, "stock/");
-
-		if (!stockDir.exists()) {
-			log.error("Source dir doesn't exist: " + stockDir.getAbsolutePath());
-			return;
-		}
-
-		File newThemeDir = new File(styleDir, newThemeName + "/");
-
-		if (newThemeDir.exists() && !newThemeDir.delete()) {
-			log.error("Error deleting existing theme directory.");
-			return;
-		}
-
-		try {
-			FileUtils.copyDirectory(stockDir, newThemeDir);
-
-			renameImports(newThemeDir, newThemeName);
-
-			File mainThemeFile = new File(styleDirectoryRoot, "/styles/stock.scss");
-			File newThemeFile = new File(styleDirectoryRoot, "/styles/" + newThemeName + ".scss");
-
-			String stockStr = new String(Files.readAllBytes(mainThemeFile.toPath()));
-			stockStr = stockStr.replaceAll("Stock.scss provides the original Eclipse icon styles.",
-					newThemeName + ".scss <enter description here>");
-			Files.write(newThemeFile.toPath(), stockStr.getBytes(StandardCharsets.UTF_8));
-		} catch (IOException e) {
-			log.error("Error creating new theme directory: " + e.getMessage(), e);
-		}
-	}
-
-	/**
-	 * 
-	 * @param newThemeDir
-	 */
-	private void renameImports(File newThemeDir, String newThemeName) {
-		for (File file : newThemeDir.listFiles()) {
-			if (file.isDirectory()) {
-				renameImports(file, newThemeName);
-				continue;
-			}
-
-			if (file.getName().endsWith(".scss")) {
-				try {
-					String stockStr = new String(Files.readAllBytes(file.toPath()));
-					stockStr = stockStr.replaceAll("@import \"stock\"", "@import \"" + newThemeName + "\"");
-					Files.write(file.toPath(), stockStr.getBytes(StandardCharsets.UTF_8));
-				} catch (IOException e) {
-					log.error("Error creating theme icon style: " + e.getMessage(), e);
-				}
-			}
-		}
-	}
-
-}
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/ExtractCSSMojo.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/ExtractCSSMojo.java
deleted file mode 100644
index 2adc5a6..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/ExtractCSSMojo.java
+++ /dev/null
@@ -1,332 +0,0 @@
-/*******************************************************************************
- * (c) Copyright 2016 l33t labs LLC and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     l33t labs LLC and others - initial contribution
- *******************************************************************************/
-
-package org.eclipse.images.renderer;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.StringWriter;
-import java.io.Writer;
-import java.net.URI;
-import java.nio.charset.StandardCharsets;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import java.util.concurrent.ForkJoinPool;
-import java.util.stream.Collectors;
-import java.util.stream.Stream;
-
-import org.apache.batik.anim.dom.SAXSVGDocumentFactory;
-import org.apache.batik.util.XMLResourceDescriptor;
-import org.apache.commons.io.IOUtils;
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.plugin.logging.Log;
-import org.w3c.dom.Attr;
-import org.w3c.dom.Element;
-import org.w3c.dom.Node;
-import org.w3c.dom.NodeList;
-import org.w3c.dom.svg.SVGDocument;
-
-/**
- * <p>
- * Extracts CSS styles from SVG icons and places them in an external stylesheet.
- * </p>
- * 
- * @goal extract-css
- * @phase generate-resources
- *
- */
-public class ExtractCSSMojo extends AbstractMojo {
-
-	/** Maven logger */
-	Log log;
-
-	/** A list of directories with svg sources to extract from. */
-	private List<IconEntry> icons = new ArrayList<>();
-
-	/** */
-	private File iconDirectoryRoot;
-
-	/**
-	 * 
-	 */
-	@Override
-	public void execute() throws MojoExecutionException, MojoFailureException {
-		log = getLog();
-
-		String workingDirectory = System.getProperty("user.dir");
-		String sourceDir = "eclipse-svg";
-		String targetDir = "eclipse-css";
-		String dirSuffix = "/" + targetDir + "/";
-		File outputDir = new File(workingDirectory + dirSuffix);
-		iconDirectoryRoot = new File(sourceDir + "/");
-
-		if (!iconDirectoryRoot.exists()) {
-			log.error("Source directory' " + sourceDir + "' does not exist.");
-			return;
-		}
-
-		// Search each subdir in the root dir for svg icons
-		for (File file : iconDirectoryRoot.listFiles()) {
-			if (!file.isDirectory()) {
-				continue;
-			}
-
-			String dirName = file.getName();
-
-			// Where to place the rendered icon
-			String child = dirName;
-			File outputBase = new File(outputDir, child);
-
-			IconGatherer.gatherIcons(icons, "svg", file, file, outputBase, true, FolderState.include);
-		}
-
-		ForkJoinPool forkJoinPool = new ForkJoinPool(4);
-
-		try {
-			forkJoinPool.submit(() -> {
-				icons.parallelStream().forEach(this::createCSS);
-				return null;
-			}).get();
-		} catch (Exception e) {
-			log.error("Error while rendering icons: " + e.getMessage(), e);
-		}
-	}
-
-	/**
-	 * 
-	 * @param icon
-	 */
-	public void createCSS(IconEntry icon) {
-		if (icon == null) {
-			log.error("Null icon definition, skipping.");
-			return;
-		}
-
-		if (icon.inputPath == null) {
-			log.error("Null icon input path, skipping: " + icon.nameBase);
-			return;
-		}
-
-		if (!icon.inputPath.exists()) {
-			log.error("Input path specified does not exist, skipping: " + icon.nameBase);
-			return;
-		}
-
-		File svgInput = icon.inputPath;
-		String absolutePath = icon.inputPath.getAbsolutePath();
-
-		String styled = absolutePath.replace("/icons/", "/styles/stock/");
-		String cssDir = styled.replace("eclipse-svg", "eclipse-css");
-		String css = cssDir.replace(".svg", ".scss");
-
-		File newOutput = new File(css);
-
-		icon.outputPath = newOutput;
-
-		if (icon.outputPath != null && !icon.outputPath.exists()) {
-			File parent = icon.outputPath.getParentFile();
-			parent.mkdirs();
-		}
-		 
-		try (StringWriter stream = new StringWriter()) {
-			// Create the document to rasterize
-			SVGDocument svgDocument = generateSVGDocument(icon);
-
-			if (svgDocument == null) {
-				return;
-			}
-
-			if (icon.outputPath.exists() && !icon.outputPath.delete()) {
-				throw new MojoExecutionException(
-						"Couldn't delete existing css for " + icon.outputPath.getAbsolutePath());
-			}
-
-			if (!icon.outputPath.createNewFile()) {
-				throw new MojoExecutionException("Couldn't create output css for " + icon.outputPath.getAbsolutePath());
-			}
-
-			stream.write("@import \"stock\";\n\n");
-
-			URI rootUri = iconDirectoryRoot.toURI();
-			URI outputUri = svgInput.getParentFile().toURI();
-
-			String relativePath = rootUri.relativize(outputUri).getPath();
-			String backSteps = countBackSteps(svgInput);
-			String cssUrlPath = backSteps + "eclipse-svg/" + relativePath + "/" + svgInput.getName();
-
-			SVGDocument doc = generateSVGDocument(icon);
-
-			Element documentElement = doc.getDocumentElement();
-
-			writeStyles(cssUrlPath, documentElement, stream);
-
-			log.info("Creating css for: " + css);
-			
-			IOUtils.write(stream.toString(), new FileOutputStream(newOutput), StandardCharsets.UTF_8);
-		} catch (Exception e) {
-			log.error("Error creating CSS: " + e.getMessage(), e);
-		}
-	}
-
-	private String countBackSteps(File file) {
-		File currentDir = file;
-		String backStep = "../";
-		while (!"eclipse-svg".equals(currentDir.getName())) {
-			currentDir = currentDir.getParentFile();
-			backStep += "../";
-		}
-
-		return backStep;
-	}
-
-	/**
-	 * <p>
-	 * Extracts and formats the inline styles within the supplied node, which
-	 * are written to the writer.
-	 * </p>
-	 * 
-	 * @param writer
-	 * 
-	 * @throws IOException
-	 */
-	private void writeStyles(String urlPath, Node node, Writer writer) throws IOException {
-		NodeList nodes = node.getChildNodes();
-		int len = nodes.getLength();
-		for (int i = 0; i < len; i++) {
-			Node item = nodes.item(i);
-
-			if (!(item instanceof Element)) {
-				continue;
-			}
-
-			Element elem = (Element) item;
-
-			Attr idAttr = elem.getAttributeNodeNS(null, "id");
-			if (idAttr != null && idAttr.getValue() != null && !"".equals(idAttr.getValue())) {
-				Attr styleAttr = elem.getAttributeNodeNS(null, "style");
-
-				if (styleAttr != null && styleAttr.getValue() != null && !"".equals(styleAttr.getValue())) {
-					String style = styleAttr.getValue();
-					String fixedStyle = style.replaceAll("-inkscape-", "inkscape-");
-					writer.write("#" + idAttr.getValue() + " {\n");
-					writer.write(formatStyles(fixedStyle, urlPath) + "\n");
-					writer.write("}\n\n");
-					
-					log.debug("Writing: " + "#" + idAttr.getValue() + " {\n");
-				}
-			}
-
-			writeStyles(urlPath, item, writer);
-		}
-	}
-
-	/**
-	 * <p>
-	 * Formats all of the inline styles in the supplied style as entries in a
-	 * CSS ID definition block.
-	 * </p>
-	 * 
-	 * @param styles
-	 *            a semi colon delimited list of styles, as used with inline
-	 *            definitions
-	 * 
-	 * @return a formatted list of CSS styles
-	 */
-	private String formatStyles(String styles, String urlPath) {
-		Stream<String> rawEntries = Arrays.stream(styles.trim().split(";"));
-
-		return rawEntries.map(style -> createStyleEntry(style, urlPath))
-						.filter(this::isValidStyle)
-						.collect(Collectors.joining("\n"));
-	}
-
-	private boolean isValidStyle(String style) {
-		return style != null && !"".equals(style);
-	}
-
-	/**
-	 * <p>
-	 * Creates a formatted CSS style entry for a style definition.
-	 * </p>
-	 * 
-	 * @param styleLine
-	 *            the existing style line
-	 * 
-	 * @return a formatted CSS style entry
-	 */
-	private String createStyleEntry(String styleLine, String urlPath) {
-		String[] split = styleLine.trim().split(":");
-
-		if (split.length != 2) {
-			log.error("Invalid style: " + styleLine);
-			return "";
-		}
-
-		String name = split[0].trim();
-		String value = split[1].trim();
-
-		if (value.startsWith("url(#")) {
-			value = repathUrl(value, urlPath);
-		}
-
-		return "\t" + name + ": " + value + ";";
-	}
-
-	/**
-	 * Adds paths to the related SVG icon, which is required for styling
-	 * references (gradients, etc).
-	 * 
-	 * @param url
-	 *            the current url
-	 * @param url
-	 *            the path to the related SVG to prepend to the url.
-	 */
-	private String repathUrl(String url, String urlPath) {
-		return url.replace("url(", "url(" + urlPath);
-	}
-
-	/**
-	 * <p>
-	 * Generates a Batik SVGDocument for the supplied IconEntry's input file.
-	 * </p>
-	 *
-	 * @param icon
-	 *            the icon entry to generate an SVG document for
-	 *
-	 * @return a batik SVGDocument instance or null if one could not be
-	 *         generated
-	 */
-	private SVGDocument generateSVGDocument(IconEntry icon) {
-		// Load the document and find out the native height/width
-		// We reuse the document later for rasterization
-		SVGDocument svgDocument = null;
-		
-		try (FileInputStream iconDocumentStream = new FileInputStream(icon.inputPath)){
-
-			String parser = XMLResourceDescriptor.getXMLParserClassName();
-			SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
-
-			// What kind of URI is batik expecting here??? the docs don't say
-			svgDocument = f.createSVGDocument("file://" + icon.nameBase + ".svg", iconDocumentStream);
-		} catch (Exception e) {
-			log.error("Error parsing SVG icon document: " + e.getMessage(), e);
-			return null;
-		}
-		
-		return svgDocument;
-	}
-
-}
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/FolderState.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/FolderState.java
deleted file mode 100644
index 195a609..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/FolderState.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package org.eclipse.images.renderer;
-
-public enum FolderState {
-	exclude,
-	include,
-	only,
-}
\ No newline at end of file
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/GalleryMojo.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/GalleryMojo.java
deleted file mode 100644
index c1cea52..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/GalleryMojo.java
+++ /dev/null
@@ -1,465 +0,0 @@
-/*******************************************************************************
- * (c) Copyright 2015, 2016 l33t labs LLC and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     l33t labs LLC and others - initial contribution
- *******************************************************************************/
-
-package org.eclipse.images.renderer;
-
-import java.awt.Color;
-import java.awt.Graphics2D;
-import java.awt.RenderingHints;
-import java.awt.image.BufferedImage;
-import java.io.File;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Map.Entry;
-
-import javax.imageio.ImageIO;
-
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.plugin.logging.Log;
-
-import com.mortennobel.imagescaling.ResampleFilters;
-import com.mortennobel.imagescaling.ResampleOp;
-
-/**
- * <p>
- * Mojo which renders galleries for comparing and evaluating icons..
- * </p>
- *
- * @goal render-galleries
- * @phase generate-resources
- */
-public class GalleryMojo extends AbstractMojo {
-
-	/** Maven logger */
-	Log log;
-
-	/** Used for finding gif files by extension. */
-	public static final String GIF_EXT = ".gif";
-
-	/** Used to specify the directory name where the SVGs are taken from. */
-	public static final String PNG_DIR = "eclipse.svg.pngdirectory";
-
-	/** Used to specify the directory name where the SVGs are taken from. */
-	public static final String GIF_DIR = "eclipse.svg.gifdirectory";
-
-	/**
-	 * <p>
-	 * Mojo takes rendered images and generates various galleries for testing
-	 * and evaluation.
-	 * </p>
-	 */
-	@Override
-	public void execute() throws MojoExecutionException, MojoFailureException {
-		log = getLog();
-
-		// Defaults to "eclipse-png"
-		String pngDir = "eclipse-png";
-		String pngDirProp = System.getProperty(PNG_DIR);
-		if (pngDirProp != null) {
-			pngDir = pngDirProp;
-		}
-
-		// Defaults to "eclipse-gif"
-		String gifDir = "eclipse-gif";
-		String gifDirProp = System.getProperty(GIF_DIR);
-		if (gifDirProp != null) {
-			gifDir = gifDirProp;
-		}
-
-		File iconDirectoryRoot = new File(pngDir + "/");
-		if (!iconDirectoryRoot.exists()) {
-			log.error("PNG directory' " + pngDir + "' does not exist.");
-			return;
-		}
-
-		Map<String, List<IconEntry>> galleryIconSets = new HashMap<>();
-
-		// Search each subdir in the root dir for svg icons
-		for (File file : iconDirectoryRoot.listFiles()) {
-			if (!file.isDirectory()) {
-				continue;
-			}
-
-			List<IconEntry> icons = new ArrayList<>();
-			IconGatherer.gatherIcons(icons, "png", file, file, iconDirectoryRoot, false, FolderState.exclude);
-
-			galleryIconSets.put(file.getName(), icons);
-		}
-
-		File mavenTargetDir = new File("target/");
-		File galleryDir = new File(mavenTargetDir, "gallery/");
-		File gifCompare = new File(galleryDir, "gifcompare/");
-		File master = new File(galleryDir, "master/");
-
-		if (galleryDir.exists()) {
-			galleryDir.delete();
-		}
-
-		galleryDir.mkdirs();
-		gifCompare.mkdirs();
-		master.mkdirs();
-
-		renderGalleries(galleryDir, gifCompare, master, galleryIconSets, 16, 800, pngDir, gifDir);
-
-		galleryIconSets.clear();
-		// Search each subdir in the root dir for svg icons
-		for (File file : iconDirectoryRoot.listFiles()) {
-			if(!file.isDirectory()) {
-				continue;
-			}
-			List<IconEntry> icons = new ArrayList<>();
-			IconGatherer.gatherIcons(icons, "png", file, file, iconDirectoryRoot, false, FolderState.only);
-
-			galleryIconSets.put(file.getName(), icons);
-		}
-		renderWizardBannerCompareGalleries(gifCompare, galleryIconSets, 75, 800, pngDir, gifDir);
-	}
-
-	/**
-	 * <p>
-	 * Renders each icon set into a gallery image for reviewing and showing off
-	 * icons, and then composes them into a master gallery image.
-	 * </p>
-	 *
-	 * @param galleryDir
-	 * @param gifCompare
-	 * @param master
-	 * @param iconSets
-	 * @param iconSize
-	 * @param width
-	 * @param pngDir
-	 * @param gifDir
-	 */
-	public void renderGalleries(File galleryDir, File gifCompare, File master, Map<String, List<IconEntry>> iconSets,
-			int iconSize, int width, String pngDir, String gifDir) {
-		// Render each icon set and a master list
-		List<IconEntry> masterList = new ArrayList<>();
-
-		for (Entry<String, List<IconEntry>> entry : iconSets.entrySet()) {
-			String key = entry.getKey();
-			List<IconEntry> value = entry.getValue();
-
-			masterList.addAll(value);
-
-			log.info("Creating gallery for: " + key);
-			renderGallery(galleryDir, key, value, iconSize, width, 3);
-			renderGifCompareGallery(gifCompare, key, value, iconSize, width, 6, pngDir, gifDir, GIF_EXT);
-		}
-
-		// Render the master image
-		log.info("Rendering master icon gallery...");
-		renderMasterGallery(galleryDir, master, "-gallery.png", iconSize, iconSize + width, true);
-		renderMasterGallery(galleryDir, master, "-gallery.png", iconSize, iconSize + width, false);
-
-		// Master gif compare
-		// renderMasterGallery(outputDir, "-gifcompare.png", iconSize, iconSize
-		// + width, false);
-	}
-
-	/**
-	 * <p>Renders each icon set into a gallery image for reviewing and showing off
-	 * icons, and then composes them into a master gallery image.</p>
-	 *
-	 * @param gifCompare
-	 * @param iconSets
-	 * @param iconSize
-	 * @param width
-	 * @param pngDir
-	 * @param gifDir
-	 */
-	public void renderWizardBannerCompareGalleries(File gifCompare, Map<String, List<IconEntry>> iconSets, int iconSize, int width, String pngDir, String gifDir) {
-		// Render each icon set
-		for (Entry<String, List<IconEntry>> entry : iconSets.entrySet()) {
-			String key = entry.getKey();
-			List<IconEntry> value = entry.getValue();
-
-			log.info("Creating wizard banner compare gallery for: " + key);
-			renderGifCompareGallery(gifCompare, key, value, iconSize, width, 6, pngDir, gifDir, ".png");
-		}
-	}
-
-	/**
-	 * <p>
-	 * Renders comparison images, the new png/svg icons vs old gifs.
-	 * </p>
-	 *
-	 * @param outputDir
-	 * @param key
-	 * @param icons
-	 * @param iconSize
-	 * @param width
-	 * @param margin
-	 * @param pngDir
-	 * @param gifDir
-	 */
-	private void renderGifCompareGallery(File outputDir, String key, List<IconEntry> icons, int iconSize, int width,
-			int margin, String pngDir, String gifDir, String fileExt) {
-		int leftColumnWidth = 300;
-		int textHeaderHeight = 31;
-		int outputSize = iconSize;
-		int widthTotal = (outputSize * 4) + (margin * 6) + leftColumnWidth;
-
-		int rowHeight = iconSize + (margin * 2);
-
-		// Compute the height and add some room for the text header (31 px)
-		int height = (icons.size() * rowHeight) + textHeaderHeight;
-
-		BufferedImage bi = new BufferedImage(widthTotal + iconSize, height, BufferedImage.TYPE_INT_ARGB);
-		Graphics2D g = bi.createGraphics();
-		g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
-
-		g.setColor(Color.GRAY);
-		g.drawString("SVG Icon Set: " + key + " - Count: " + icons.size(), 8, 20);
-
-		int y = textHeaderHeight;
-
-		// Render
-		ResampleOp resampleOp = new ResampleOp(outputSize, outputSize);
-		resampleOp.setFilter(ResampleFilters.getLanczos3Filter());
-		// resampleOp.setUnsharpenMask(AdvancedResizeOp.UnsharpenMask.Oversharpened);
-		resampleOp.setNumberOfThreads(Runtime.getRuntime().availableProcessors());
-
-		int second = leftColumnWidth + margin + iconSize;
-
-		g.setColor(Color.WHITE);
-		g.fillRect(0, 0, widthTotal + 10, height);
-
-		g.setColor(Color.DARK_GRAY);
-		g.fillRect(second + (margin / 2) + iconSize + 20, 0, (margin * 2) + (iconSize * 2) + 10, height);
-
-		g.drawString(key + " (Old / New)", 15, 20);
-
-		Collections.sort(icons);
-
-		// Render each icon into the gallery grid
-		for (IconEntry entry : icons) {
-
-			if (entry.inputPath == null) {
-				continue;
-			}
-
-			try {
-				BufferedImage pngImage = ImageIO.read(entry.inputPath);
-
-				// Munge the gif path
-				File gifLocalPath = new File(entry.inputPath.getParentFile(), entry.nameBase + fileExt);
-				String absoluteLocalPath = gifLocalPath.getAbsolutePath();
-				String gifAbsPath = absoluteLocalPath.replaceFirst(pngDir, gifDir);
-				File gifPath = new File(gifAbsPath);
-
-				log.debug("Search for old images...");
-				log.debug("Entry path: " + entry.inputPath.getAbsolutePath());
-				log.debug("Old image path: " + gifPath.getAbsolutePath());
-
-				BufferedImage gifImage = null;
-				BufferedImage sizedGifImage = null;
-				BufferedImage sizedPngImage = null;
-
-				if (gifPath.exists()) {
-					gifImage = ImageIO.read(gifPath);
-				} else {
-					log.debug("Old image not found: " + gifPath.getAbsolutePath());
-				}
-
-				g.drawString(entry.nameBase, 5, y + (margin * 3));
-
-				g.drawLine(0, y, widthTotal, y);
-
-				if (gifImage != null) {
-					if (gifImage.getWidth() > outputSize || gifImage.getHeight() > outputSize) {
-						sizedGifImage = resampleOp.filter(gifImage, null);
-					} else {
-						sizedGifImage = gifImage;
-					}
-					g.drawImage(sizedGifImage, leftColumnWidth, y + margin, null);
-				}
-
-				if (pngImage.getWidth() > outputSize || pngImage.getHeight() > outputSize) {
-					sizedPngImage = resampleOp.filter(pngImage, null);
-				} else {
-					sizedPngImage = pngImage;
-				}
-				g.drawImage(sizedPngImage, second, y + margin, null);
-
-				if (gifImage != null) {
-					g.drawImage(sizedGifImage, second + margin + iconSize + 30, y + margin, null);
-				}
-
-				g.drawImage(sizedPngImage, second + (margin * 2) + (iconSize * 2) + 30, y + margin, null);
-
-				y += iconSize + margin * 2;
-			} catch (Exception e) {
-				e.printStackTrace();
-				log.error("Error rendering icon for gallery: " + entry.inputPath.getAbsolutePath());
-				continue;
-			}
-		}
-
-		try {
-			// Write the gallery image to disk
-			String outputName = key + "-" + iconSize + "-gifcompare.png";
-			ImageIO.write(bi, "PNG", new File(outputDir, outputName));
-		} catch (IOException e) {
-			e.printStackTrace();
-			log.error("Error writing gif comparison gallery: " + e.getMessage());
-		}
-	}
-
-	/**
-	 * <p>
-	 * Renders an icon set into a grid within an image.
-	 * </p>
-	 *
-	 * @param outputRoot
-	 * @param key
-	 * @param icons
-	 */
-	private void renderGallery(File outputRoot, String key, List<IconEntry> icons, int iconSize, int width,
-			int margin) {
-		int textHeaderHeight = 31;
-		int outputSize = iconSize;
-		int outputTotal = outputSize + (margin * 2);
-		int div = width / outputTotal;
-		int rowCount = icons.size() / div;
-
-		if (width % outputTotal > 0) {
-			rowCount++;
-		}
-
-		// Compute the height and add some room for the text header (31 px)
-		int height = Math.max(outputTotal, rowCount * outputTotal) + textHeaderHeight;
-
-		BufferedImage bi = new BufferedImage(width + iconSize, height, BufferedImage.TYPE_INT_ARGB);
-		Graphics2D g = bi.createGraphics();
-		g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
-
-		g.setColor(Color.GRAY);
-		g.drawString("SVG Icon Set: " + key + " - Count: " + icons.size(), 8, 20);
-
-		int x = 1;
-		int y = textHeaderHeight;
-
-		// Render
-		ResampleOp resampleOp = new ResampleOp(outputSize, outputSize);
-		resampleOp.setFilter(ResampleFilters.getLanczos3Filter());
-		// resampleOp.setUnsharpenMask(AdvancedResizeOp.UnsharpenMask.Oversharpened);
-		resampleOp.setNumberOfThreads(Runtime.getRuntime().availableProcessors());
-
-		// Render each icon into the gallery grid
-		for (IconEntry def : icons) {
-			try {
-				if (def.inputPath == null) {
-					log.error("Undefined gallery image for : " + def.nameBase);
-					continue;
-				}
-
-				BufferedImage iconImage = ImageIO.read(def.inputPath);
-				BufferedImage sizedImage = resampleOp.filter(iconImage, null);
-
-				g.drawImage(sizedImage, x + margin, y + margin, null);
-
-				x += outputTotal;
-
-				if (x >= width) {
-					x = 1;
-					y += outputTotal;
-				}
-			} catch (Exception e) {
-				log.error("Error rendering icon for gallery: " + def.inputPath.getAbsolutePath());
-				e.printStackTrace();
-				continue;
-			}
-		}
-
-		try {
-			// Write the gallery image to disk
-			String outputName = key + "-" + iconSize + "-gallery.png";
-			ImageIO.write(bi, "PNG", new File(outputRoot, outputName));
-		} catch (IOException e) {
-			log.error("Error writing icon: " + e.getMessage());
-			e.printStackTrace();
-		}
-	}
-
-	/**
-	 * <p>
-	 * Renders a master gallery image that contains every icon set at the
-	 * current resolution.
-	 * </p>
-	 * 
-	 * @param root
-	 * @param output
-	 * @param fileEnding
-	 * @param iconSize
-	 * @param width
-	 * @param dark
-	 */
-	private void renderMasterGallery(File root, File output, String fileEnding, int iconSize, int width, boolean dark) {
-		int headerHeight = 30;
-		List<BufferedImage> images = new ArrayList<>();
-		for (File file : root.listFiles()) {
-			if (file.getName().endsWith(iconSize + fileEnding)) {
-				BufferedImage set = null;
-				try {
-					set = ImageIO.read(file);
-				} catch (IOException e) {
-					log.error("Error reading icon: " + e.getMessage());
-					e.printStackTrace();
-					continue;
-				}
-				images.add(set);
-				headerHeight += set.getHeight();
-			}
-		}
-
-		BufferedImage bi = new BufferedImage(width, headerHeight, BufferedImage.TYPE_INT_ARGB);
-		Graphics2D g = bi.createGraphics();
-		g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
-
-		if (dark) {
-			g.setColor(Color.DARK_GRAY);
-		} else {
-			g.setColor(Color.WHITE);
-		}
-		g.fillRect(0, 0, bi.getWidth(), bi.getHeight());
-
-		g.setColor(Color.BLACK);
-		g.drawString(
-				"SVG Icons for Eclipse - Count: " + iconSize + "x" + iconSize + " Rendered: " + new Date().toString(),
-				8, 20);
-
-		int x = 0;
-		int y = 31;
-
-		// Draw each icon set image into the uber gallery
-		for (BufferedImage image : images) {
-			g.drawImage(image, x, y, null);
-			y += image.getHeight();
-		}
-
-		try {
-			// Write the uber gallery to disk
-			String bgState = (dark) ? "dark" : "light";
-			String outputName = "global-svg-" + iconSize + "-" + bgState + fileEnding + "-icons.png";
-			ImageIO.write(bi, "PNG", new File(output, outputName));
-		} catch (IOException e) {
-			log.error("Error writing gallery: " + e.getMessage());
-			e.printStackTrace();
-		}
-	}
-}
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/IconEntry.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/IconEntry.java
deleted file mode 100644
index 8e75bc7..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/IconEntry.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************
- * (c) Copyright 2015 l33t labs LLC and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     l33t labs LLC and others - initial contribution
- *******************************************************************************/
-
-package org.eclipse.images.renderer;
-
-import java.io.File;
-
-/**
- * <p>
- * IconEntry is used to define an icon to rasterize, where to put it and the
- * dimensions to render it at.
- * </p>
- */
-class IconEntry implements Comparable<IconEntry> {
-
-	/** The name of the icon minus extension */
-	String nameBase;
-
-	/** The input path of the source svg files. */
-	File inputPath;
-
-	/** The sizes this icon should be rendered at */
-	int[] sizes;
-
-	/**
-	 * The path rasterized versions of this icon should be written into.
-	 */
-	File outputPath;
-
-	/** The path to a disabled version of the icon (gets desaturated). */
-	File disabledPath;
-
-	/** The root directory for the icon (org.eclipse.ui, etc) */
-	File iconRoot;
-
-	/**
-	 * 
-	 * @param nameBase
-	 * @param inputPath
-	 * @param outputPath
-	 * @param disabledPath
-	 * @param sizes
-	 */
-	public IconEntry(String nameBase, File iconRoot, File inputPath, File outputPath, File disabledPath, int[] sizes) {
-		this.nameBase = nameBase;
-		this.iconRoot = iconRoot;
-		this.sizes = sizes;
-		this.inputPath = inputPath;
-		this.outputPath = outputPath;
-		this.disabledPath = disabledPath;
-	}
-
-	@Override
-	public int compareTo(IconEntry o) {
-		return nameBase.compareTo(o.nameBase);
-	}
-}
\ No newline at end of file
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/IconGatherer.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/IconGatherer.java
deleted file mode 100644
index 78306d1..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/IconGatherer.java
+++ /dev/null
@@ -1,159 +0,0 @@
-/*******************************************************************************
- * (c) Copyright 2015 l33t labs LLC and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     l33t labs LLC and others - initial contribution
- *******************************************************************************/
-
-package org.eclipse.images.renderer;
-
-import java.io.File;
-import java.net.URI;
-import java.util.Arrays;
-import java.util.List;
-
-/**
- * <p>
- * Utility to find and organize icons for rendering.
- * </p>
- * 
- * @author tmccrary@l33tlabs.com
- *
- */
-public class IconGatherer {
-
-	private IconGatherer() { }
-	
-	/**
-	 * <p>
-	 * Searches the root resources directory for svg icons and adds them to a
-	 * collection for later rasterization.
-	 * </p>
-	 *
-	 * @param icons
-	 * @param extension
-	 * @param rootDir
-	 * @param iconDir
-	 * @param outputBase
-	 * @param generateDisabledDirs
-	 */
-	public static void gatherIcons(List<IconEntry> icons, String extension, File rootDir, File iconDir, File outputBase,
-			boolean generateDisabledDirs, FolderState wizardBannerState) {
-
-		List<File> listFiles = Arrays.asList(iconDir.listFiles());
-
-		String filter = System.getProperty("eclipse.svg.filter");
-		String targetIcon = System.getProperty("eclipse.svg.targetIcon");
-		
-		
-		for (File child : listFiles) {
-			if(filter != null && !child.getAbsolutePath().contains(filter)) {
-				continue;
-			}
-			
-			if (child.isDirectory()) {
-				if (child.getName().startsWith("d") && !("dgm".equals(child.getName()))) {
-					continue;
-				}
-				
-				if (wizardBannerState == FolderState.exclude && "wizban".equals(child.getName())) {
-					continue;
-				}
-
-				gatherIcons(icons, extension, rootDir, child, outputBase, generateDisabledDirs, wizardBannerState);
-				continue;
-			}
-
-			if (targetIcon != null && !child.getName().contains(targetIcon)) {
-				continue;
-			}
-
-			if (!child.getName().endsWith(extension)) {
-				continue;
-			}
-
-			if (!child.getName().endsWith(extension) || child.getName().contains("@1.5x")
-					|| child.getName().contains("@2x")) {
-				continue;
-			}
-
-			// Compute a relative path for the output dir
-			URI rootUri = rootDir.toURI();
-			URI iconUri = iconDir.toURI();
-
-			String relativePath = rootUri.relativize(iconUri).getPath();
-			File outputDir = new File(outputBase, relativePath);
-			File disabledOutputDir = null;
-
-			File parentFile = child.getParentFile();
-			if (wizardBannerState == FolderState.only && !"wizban".equals(parentFile.getName())) {
-				continue;
-			}
-
-			/*
-			 * Determine if/where to put a disabled version of the icon Eclipse
-			 * traditionally uses a prefix of d for disabled, e for enabled in
-			 * the folder name
-			 */
-			if (generateDisabledDirs && parentFile != null) {
-				String parentDirName = parentFile.getName();
-				if (parentDirName.startsWith("e")) {
-					StringBuilder builder = new StringBuilder();
-					builder.append("d");
-					builder.append(parentDirName.substring(1, parentDirName.length()));
-
-					// Disabled variant folder name
-					String disabledVariant = builder.toString();
-
-					// The parent's parent, to create the disabled directory in
-					File setParent = parentFile.getParentFile();
-
-					// The source directory's disabled folder
-					File disabledSource = new File(setParent, disabledVariant);
-
-					// Compute a relative path, so we can create the output
-					// folder
-					String path = rootUri.relativize(disabledSource.toURI()).getPath();
-
-					// Create the output folder, so a disabled icon is generated
-					disabledOutputDir = new File(outputBase, path);
-				}
-			}
-
-			IconEntry icon = createIcon(rootDir, child, outputDir, disabledOutputDir);
-
-			icons.add(icon);
-		}
-	}
-
-	/**
-	 * <p>
-	 * Creates an IconEntry, which contains information about rendering an icon
-	 * such as the source file, where to render, what alternative types of
-	 * output to generate, etc.
-	 * </p>
-	 *
-	 * @param the
-	 *            root directory of the icon (org.eclipse.ui, etc)
-	 * @param input
-	 *            the source of the icon file (SVG document)
-	 * @param outputPath
-	 *            the path of the rasterized version to generate
-	 * @param disabledPath
-	 *            the path of the disabled (desaturated) icon, if one is
-	 *            required
-	 *
-	 * @return an IconEntry describing the rendering operation
-	 */
-	public static IconEntry createIcon(File iconRoot, File input, File outputPath, File disabledPath) {
-		String name = input.getName();
-		String[] split = name.split("\\.(?=[^\\.]+$)");
-
-		return new IconEntry(split[0], iconRoot, input, outputPath, disabledPath, new int[0]);
-	}
-
-}
diff --git a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/RenderMojo.java b/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/RenderMojo.java
deleted file mode 100644
index ba820a0..0000000
--- a/org.eclipse.images.renderer/src/main/java/org/eclipse/images/renderer/RenderMojo.java
+++ /dev/null
@@ -1,789 +0,0 @@
-/*******************************************************************************
- * (c) Copyright 2015 l33t labs LLC and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     l33t labs LLC and others - initial contribution
- *******************************************************************************/
-
-package org.eclipse.images.renderer;
-
-import java.awt.RenderingHints;
-import java.awt.image.BufferedImage;
-import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileWriter;
-import java.io.IOException;
-import java.io.OutputStream;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-import java.util.concurrent.ForkJoinPool;
-import java.util.concurrent.atomic.AtomicInteger;
-import java.util.stream.Collectors;
-
-import javax.imageio.ImageIO;
-
-import org.apache.batik.anim.dom.SAXSVGDocumentFactory;
-import org.apache.batik.gvt.renderer.ImageRenderer;
-import org.apache.batik.gvt.renderer.StaticRenderer;
-import org.apache.batik.transcoder.ErrorHandler;
-import org.apache.batik.transcoder.TranscoderException;
-import org.apache.batik.transcoder.TranscoderInput;
-import org.apache.batik.transcoder.TranscoderOutput;
-import org.apache.batik.transcoder.image.PNGTranscoder;
-import org.apache.batik.util.XMLResourceDescriptor;
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.plugin.logging.Log;
-import org.w3c.dom.Attr;
-import org.w3c.dom.Element;
-import org.w3c.dom.Node;
-import org.w3c.dom.NodeList;
-import org.w3c.dom.svg.SVGDocument;
-
-import com.jhlabs.image.ContrastFilter;
-import com.jhlabs.image.GrayscaleFilter;
-import com.jhlabs.image.HSBAdjustFilter;
-
-/**
- * <p>
- * Mojo which renders SVG icons into PNG format.
- * </p>
- *
- * @goal render-icons
- * @phase generate-resources
- */
-public class RenderMojo extends AbstractMojo {
-
-	/** Maven logger */
-	Log log;
-
-	/** Used for high resolution (HiDPI) rendering support. */
-	public static final String ECLIPSE_SVG_SCALE = "eclipse.svg.scale";
-
-	/** Used to specify the number of render threads when rasterizing icons. */
-	public static final String RENDERTHREADS = "eclipse.svg.renderthreads";
-
-	/** Used to specify the directory name where the SVGs are taken from. */
-	public static final String SOURCE_DIR = "eclipse.svg.sourcedirectory";
-
-	/** Used to specify the directory name where the PNGs are saved to. */
-	public static final String TARGET_DIR = "eclipse.svg.targetdirectory";
-
-	/**
-	 * Used to specify whether to create separate fragments or putting the high
-	 * resolution icons next to the low-resolution icons.
-	 */
-	public static final String CREATE_FRAGMENTS = "eclipse.svg.createFragments";
-
-	/** Used to specify whether to use stylesheets. */
-	public static final String USE_STYLESHEET = "eclipse.svg.stylesheet";
-
-	/**
-	 * Used to specify whether to recreate css styles with SASS or use the
-	 * existing css files.
-	 */
-	public static final String REGENERATE_STYLES = "eclipse.svg.stylesheet.regenerate";
-
-	/** A list of directories with svg sources to rasterize. */
-	private List<IconEntry> icons;
-
-	/** The number of threads to use when rendering icons. */
-	private int threads;
-
-	private final class CustomTranscoder extends PNGTranscoder {
-		@Override
-		protected ImageRenderer createRenderer() {
-			ImageRenderer renderer = new StaticRenderer();
-
-			RenderingHints renderHints = renderer.getRenderingHints();
-
-			renderHints.add(
-					new RenderingHints(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_OFF));
-
-			renderHints.add(new RenderingHints(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY));
-
-			renderHints.add(new RenderingHints(RenderingHints.KEY_DITHERING, RenderingHints.VALUE_DITHER_DISABLE));
-
-			renderHints.add(
-					new RenderingHints(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC));
-
-			renderHints.add(new RenderingHints(RenderingHints.KEY_ALPHA_INTERPOLATION,
-					RenderingHints.VALUE_ALPHA_INTERPOLATION_QUALITY));
-
-			renderHints.add(new RenderingHints(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON));
-
-			renderHints.add(
-					new RenderingHints(RenderingHints.KEY_COLOR_RENDERING, RenderingHints.VALUE_COLOR_RENDER_QUALITY));
-
-			renderHints.add(new RenderingHints(RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_PURE));
-
-			renderHints.add(new RenderingHints(RenderingHints.KEY_FRACTIONALMETRICS,
-					RenderingHints.VALUE_FRACTIONALMETRICS_ON));
-
-			renderer.setRenderingHints(renderHints);
-
-			return renderer;
-		}
-	}
-
-	/**
-	 * A counter used to keep track of the number of rendered icons. Atomic is
-	 * used to make it easy to access between threads concurrently.
-	 */
-	private AtomicInteger counter;
-
-	/** List of icons that failed to render, made safe for parallel access */
-	List<IconEntry> failedIcons = Collections.synchronizedList(new ArrayList<IconEntry>(5));
-
-	/** The amount of scaling to apply to rasterized images. */
-	private double outputScale;
-
-	/** An absolute path to a stylesheet to use when rendering icons. */
-	private String stylesheetName;
-
-	/**
-	 * If true, existing css stylesheets will be deleted and recreated with SASS
-	 * for the supplied theme, only used during CSS-based rendering.
-	 */
-	private boolean regenerateCss = false;
-
-	/**
-	 * @return the number of icons rendered at the time of the call
-	 */
-	public int getIconsRendered() {
-		return counter.get();
-	}
-
-	/**
-	 * @return the number of icons that failed during the rendering process
-	 */
-	public int getFailedIcons() {
-		return failedIcons.size();
-	}
-
-	/**
-	 * <p>
-	 * Generates raster images from the input SVG vector image.
-	 * </p>
-	 *
-	 * @param icon
-	 *            the icon to render
-	 * @param grayFilter
-	 * @param desaturator
-	 * @param decontrast
-	 */
-	public void rasterize(IconEntry icon) {
-		if (icon == null) {
-			log.error("Null icon definition, skipping.");
-			failedIcons.add(icon);
-			return;
-		}
-
-		if (icon.inputPath == null) {
-			log.error("Null icon input path, skipping: " + icon.nameBase);
-			failedIcons.add(icon);
-			return;
-		}
-
-		if (!icon.inputPath.exists()) {
-			log.error("Input path specified does not exist, skipping: " + icon.nameBase);
-			failedIcons.add(icon);
-			return;
-		}
-
-		if (icon.outputPath != null && !icon.outputPath.exists()) {
-			icon.outputPath.mkdirs();
-		}
-
-		if (icon.disabledPath != null && !icon.disabledPath.exists()) {
-			icon.disabledPath.mkdirs();
-		}
-
-		// Create the document to rasterize
-		SVGDocument svgDocument = generateSVGDocument(icon);
-
-		if (svgDocument == null) {
-			return;
-		}
-
-		// Determine the output sizes (native, double, quad)
-		// We render at quad size and resample down for output
-		Element svgDocumentNode = svgDocument.getDocumentElement();
-		String nativeWidthStr = svgDocumentNode.getAttribute("width");
-		String nativeHeightStr = svgDocumentNode.getAttribute("height");
-		int nativeWidth = -1;
-		int nativeHeight = -1;
-
-		try {
-			if (!"".equals(nativeWidthStr) && !"".equals(nativeHeightStr)) {
-				nativeWidthStr = stripOffPx(nativeWidthStr);
-				nativeHeightStr = stripOffPx(nativeHeightStr);
-				nativeWidth = Integer.parseInt(nativeWidthStr);
-				nativeHeight = Integer.parseInt(nativeHeightStr);
-			} else {
-				// Vector graphics editing programs don't always output height
-				// and width attributes on SVG.
-				// As fall back: parse the viewBox attribute (which is almost
-				// always set).
-				String viewBoxStr = svgDocumentNode.getAttribute("viewBox");
-				if ("".equals(viewBoxStr)) {
-					log.error("Icon defines neither width/height nor a viewBox, skipping: " + icon.nameBase);
-					failedIcons.add(icon);
-					return;
-				}
-				String[] splitted = viewBoxStr.split(" ");
-				if (splitted.length != 4) {
-					log.error("Dimension could not be parsed. Skipping: " + icon.nameBase);
-					failedIcons.add(icon);
-					return;
-				}
-				String widthStr = splitted[2];
-				widthStr = stripOffPx(widthStr);
-				String heightStr = splitted[3];
-				heightStr = stripOffPx(heightStr);
-
-				nativeWidth = Integer.parseInt(widthStr);
-				nativeHeight = Integer.parseInt(heightStr);
-			}
-		} catch (NumberFormatException e) {
-			log.error("Dimension could not be parsed ( " + e.getMessage() + "), skipping: " + icon.nameBase);
-			failedIcons.add(icon);
-			return;
-		}
-
-		int outputWidth = (int) (nativeWidth * outputScale);
-		int outputHeight = (int) (nativeHeight * outputScale);
-
-		// Guesstimate the PNG size in memory, BAOS will enlarge if necessary.
-		int outputInitSize = nativeWidth * nativeHeight * 4 + 1024;
-		ByteArrayOutputStream iconOutput = new ByteArrayOutputStream(outputInitSize);
-
-		// Render to SVG
-		try {
-			log.info(Thread.currentThread().getName() + " " + " Rasterizing: " + icon.nameBase + ".png at "
-					+ outputWidth + "x" + outputHeight);
-
-			TranscoderInput svgInput = new TranscoderInput(svgDocument);
-
-			boolean success = renderIcon(icon, outputWidth, outputHeight, svgInput, iconOutput);
-
-			if (!success) {
-				log.error("Failed to render icon: " + icon.nameBase + ".png, skipping.");
-				failedIcons.add(icon);
-				return;
-			} else {
-				counter.getAndAdd(1);
-			}
-		} catch (Exception e) {
-			log.error("Failed to render icon: " + e.getMessage(), e);
-			failedIcons.add(icon);
-			return;
-		}
-
-		// Generate a buffered image from Batik's png output
-		byte[] imageBytes = iconOutput.toByteArray();
-		ByteArrayInputStream imageInputStream = new ByteArrayInputStream(imageBytes);
-
-		BufferedImage inputImage = null;
-		try {
-			inputImage = ImageIO.read(imageInputStream);
-
-			if (inputImage == null) {
-				log.error(
-						"Failed to generate BufferedImage from rendered icon, ImageIO returned null: " + icon.nameBase);
-				failedIcons.add(icon);
-				return;
-			}
-		} catch (IOException e2) {
-			log.error(
-					"Failed to generate BufferedImage from rendered icon: " + icon.nameBase + " - " + e2.getMessage());
-			failedIcons.add(icon);
-			return;
-		}
-
-		writeIcon(icon, outputWidth, outputHeight, inputImage);
-
-		try {
-			if (icon.disabledPath != null) {
-				GrayscaleFilter grayFilter = new GrayscaleFilter();
-
-				HSBAdjustFilter desaturator = new HSBAdjustFilter();
-				desaturator.setSFactor(0.0f);
-
-				ContrastFilter decontrast = new ContrastFilter();
-				decontrast.setBrightness(2.9f);
-				decontrast.setContrast(0.2f);
-
-				BufferedImage desaturated16 = desaturator.filter(grayFilter.filter(inputImage, null), null);
-
-				BufferedImage decontrasted = decontrast.filter(desaturated16, null);
-
-				String outputName = getOutputName(icon.nameBase);
-				ImageIO.write(decontrasted, "PNG", new File(icon.disabledPath, outputName));
-			}
-		} catch (Exception e1) {
-			log.error("Failed to render disabled icon: " + icon.nameBase, e1);
-			failedIcons.add(icon);
-		}
-	}
-
-	private String stripOffPx(String dimensionString) {
-		if (dimensionString.endsWith("px")) {
-			return dimensionString.substring(0, dimensionString.length() - 2);
-		}
-		return dimensionString;
-	}
-
-	/**
-	 * <p>
-	 * Generates a Batik SVGDocument for the supplied IconEntry's input file.
-	 * </p>
-	 *
-	 * @param icon
-	 *            the icon entry to generate an SVG document for
-	 *
-	 * @return a batik SVGDocument instance or null if one could not be
-	 *         generated
-	 */
-	private SVGDocument generateSVGDocument(IconEntry icon) {
-		// Load the document and find out the native height/width
-		// We reuse the document later for rasterization
-		SVGDocument svgDocument = null;
-		try (FileInputStream iconDocumentStream = new FileInputStream(icon.inputPath)) {
-
-			String parser = XMLResourceDescriptor.getXMLParserClassName();
-			SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
-
-			// What kind of URI is batik expecting here??? the docs don't say
-			svgDocument = f.createSVGDocument("file://" + icon.nameBase + ".svg", iconDocumentStream);
-		} catch (Exception e3) {
-			log.error("Error parsing SVG icon document: " + e3.getMessage());
-			failedIcons.add(icon);
-			return null;
-		}
-		return svgDocument;
-	}
-
-	/**
-	 * <p>
-	 * Resizes the supplied inputImage to the specified width and height, using
-	 * lanczos resampling techniques.
-	 * </p>
-	 *
-	 * @param icon
-	 *            the icon that's being resized
-	 * @param width
-	 *            the desired output width after rescaling operations
-	 * @param height
-	 *            the desired output height after rescaling operations
-	 * @param sourceImage
-	 *            the source image to resource
-	 */
-	private void writeIcon(IconEntry icon, int width, int height, BufferedImage sourceImage) {
-		try {
-			String outputName = getOutputName(icon.nameBase);
-			ImageIO.write(sourceImage, "PNG", new File(icon.outputPath, outputName));
-		} catch (Exception e1) {
-			log.error("Failed to resize rendered icon to output size: " + icon.nameBase, e1);
-			failedIcons.add(icon);
-		}
-	}
-
-	/**
-	 * 
-	 * @param outputName
-	 * @return
-	 */
-	private String getOutputName(String outputName) {
-		if (outputScale != 1) {
-			String scaleId = outputScale == (double) (int) outputScale ? Integer.toString((int) outputScale)
-					: Double.toString(outputScale);
-			outputName += "@" + scaleId + "x";
-		}
-		outputName += ".png";
-		return outputName;
-	}
-
-	/**
-	 * Use batik to rasterize the input SVG into a raster image at the specified
-	 * image dimensions.
-	 *
-	 * @param icon
-	 * @param width
-	 *            the width to render the icons at
-	 * @param height
-	 *            the height to render the icon at
-	 * @param transcoderInput
-	 *            the SVG transcoder input
-	 * @param stream
-	 *            the stream to write the PNG data to
-	 * 
-	 * @return true if the icon was rendered successfully, false otherwise
-	 * @throws MojoExecutionException
-	 */
-	public boolean renderIcon(final IconEntry icon, int width, int height, TranscoderInput transcoderInput,
-			OutputStream stream) throws MojoExecutionException {
-		PNGTranscoder transcoder = new CustomTranscoder();
-
-		removeStyleDashPrefix(transcoderInput.getDocument().getDocumentElement());
-
-		if (stylesheetName != null) {
-			String cssRoot = icon.inputPath.getAbsolutePath().replace("eclipse-svg", "eclipse-css");
-			cssRoot = cssRoot.replace("/icons/", "/styles/" + stylesheetName + "/");
-			cssRoot = cssRoot.replace(".svg", ".scss");
-			File cssPath = new File(cssRoot);
-
-			File preprocessedCss = generateCSS(icon.nameBase, cssPath.getAbsolutePath());
-
-			if (!preprocessedCss.exists()) {
-				log.error("Could not resolve supplied stylesheet: " + preprocessedCss.getAbsolutePath()
-						+ ", using defaults.");
-			} else {
-				removeInlineStyle(transcoderInput.getDocument().getDocumentElement());
-
-				transcoder.addTranscodingHint(PNGTranscoder.KEY_USER_STYLESHEET_URI,
-						preprocessedCss.toURI().toString());
-			}
-		}
-
-		transcoder.addTranscodingHint(PNGTranscoder.KEY_WIDTH, Float.valueOf(width));
-		transcoder.addTranscodingHint(PNGTranscoder.KEY_HEIGHT, Float.valueOf(height));
-
-		transcoder.setErrorHandler(new ErrorHandler() {
-			@Override
-			public void warning(TranscoderException arg0) throws TranscoderException {
-				log.error("Icon: " + icon + " - WARN: " + arg0.getMessage());
-			}
-
-			@Override
-			public void fatalError(TranscoderException arg0) throws TranscoderException {
-				log.error("Icon: " + icon + " - FATAL: " + arg0.getMessage());
-			}
-
-			@Override
-			public void error(TranscoderException arg0) throws TranscoderException {
-				log.error("Icon: " + icon + " - ERROR: " + arg0.getMessage());
-			}
-		});
-
-		// Transcode the SVG document input to a PNG via the output stream
-		TranscoderOutput output = new TranscoderOutput(stream);
-
-		try {
-			transcoder.transcode(transcoderInput, output);
-			return true;
-		} catch (Exception e) {
-			log.error("Error transcoding SVG to bitmap.", e);
-			return false;
-		} finally {
-			try {
-				stream.close();
-			} catch (IOException e) {
-				log.error("Error closing transcoder stream.", e);
-			}
-		}
-	}
-
-	/**
-	 * <p>
-	 * Initializes rasterizer defaults
-	 * </p>
-	 *
-	 * @param threads
-	 *            the number of threads to render with
-	 * @param scale
-	 *            multiplier to use with icon output dimensions
-	 */
-	private void init(int threads, double scale) {
-		this.threads = threads;
-		this.outputScale = Math.max(1, scale);
-		icons = new ArrayList<>();
-		counter = new AtomicInteger();
-	}
-
-	/**
-	 * @see AbstractMojo#execute()
-	 */
-	public void execute() throws MojoExecutionException, MojoFailureException {
-		log = getLog();
-
-		// Default to 2x the number of processor cores but allow override via
-		// jvm arg
-		int systemCores = Math.max(1, Runtime.getRuntime().availableProcessors());
-		String threadStr = System.getProperty(RENDERTHREADS);
-		if (threadStr != null) {
-			try {
-				threads = Integer.parseInt(threadStr);
-			} catch (Exception e) {
-				log.error("Could not parse thread count, using default thread count.", e);
-				threads = systemCores;
-			}
-		}
-
-		// if high res is enabled, the icons output size will be scaled by
-		// iconScale
-		// Defaults to 1, meaning native size
-		double iconScale = 1;
-		String iconScaleStr = System.getProperty(ECLIPSE_SVG_SCALE);
-		if (iconScaleStr != null) {
-			iconScale = Double.parseDouble(iconScaleStr);
-			if (iconScale != 1 && iconScale != 1.5 && iconScale != 2) {
-				log.warn("Unusual scale factor: " + iconScaleStr + " (@" + iconScale + "x)");
-			}
-		}
-
-		// Defaults to "eclipse-svg"
-		String sourceDir = "eclipse-svg";
-		String sourceDirProp = System.getProperty(SOURCE_DIR);
-		if (sourceDirProp != null) {
-			sourceDir = sourceDirProp;
-		}
-
-		// Defaults to "eclipse-png"
-		String targetDir = "eclipse-png";
-		String targetDirProp = System.getProperty(TARGET_DIR);
-		if (targetDirProp != null) {
-			targetDir = targetDirProp;
-		}
-
-		// Defaults to "true"
-		boolean createFragements = true;
-		String createFragmentsProp = System.getProperty(CREATE_FRAGMENTS);
-		if (createFragmentsProp != null) {
-			createFragements = Boolean.parseBoolean(createFragmentsProp);
-		}
-
-		// Defaults to "false"
-		String inputStylesheet = System.getProperty(USE_STYLESHEET);
-		if (inputStylesheet != null) {
-			stylesheetName = inputStylesheet;
-		}
-
-		// Defaults to "false"
-		String regenerateStyles = System.getProperty(REGENERATE_STYLES);
-		if (regenerateStyles != null) {
-			regenerateCss = Boolean.parseBoolean(regenerateStyles);
-		}
-
-		// Track the time it takes to render the entire set
-		long totalStartTime = System.currentTimeMillis();
-
-		// initialize defaults (the old renderer was instantiated via
-		// constructor)
-		init(systemCores, iconScale);
-
-		String workingDirectory = System.getProperty("user.dir");
-
-		String dirSuffix = "/" + targetDir + "/";
-		if ((iconScale != 1) && createFragements) {
-			dirSuffix = "/" + targetDir + "-hidpi/";
-		}
-
-		if(stylesheetName != null) {
-			if ((iconScale != 1) && createFragements) {
-				dirSuffix = "/" + targetDir + "-" + stylesheetName + "-hidpi/";
-			} else {
-				dirSuffix = "/" + targetDir + "-" + stylesheetName + "/";
-			}
-		}
-		
-		File outputDir = new File(workingDirectory + dirSuffix);
-		File iconDirectoryRoot = new File(sourceDir + "/");
-
-		if (!iconDirectoryRoot.exists()) {
-			log.error("Source directory' " + sourceDir + "' does not exist.");
-			return;
-		}
-
-		// Search each subdir in the root dir for svg icons
-		for (File file : iconDirectoryRoot.listFiles()) {
-			if (!file.isDirectory()) {
-				continue;
-			}
-
-			String dirName = file.getName();
-
-			// Where to place the rendered icon
-			String child = dirName;
-			if ((iconScale != 1) && createFragements) {
-				child = dirName + ".hidpi";
-			}
-
-			File outputBase = new File(outputDir, child);
-			if ((iconScale != 1) && createFragements) {
-				createFragmentFiles(outputBase, dirName);
-			}
-
-			IconGatherer.gatherIcons(icons, "svg", file, file, outputBase, true, FolderState.include);
-		}
-
-		log.info("Working directory: " + outputDir.getAbsolutePath());
-		log.info("SVG Icon Directory: " + iconDirectoryRoot.getAbsolutePath());
-		log.info("Rendering icons with " + systemCores + " threads, scaling output to " + iconScale + "x");
-		long startTime = System.currentTimeMillis();
-
-		ForkJoinPool forkJoinPool = new ForkJoinPool(threads);
-
-		try {
-			forkJoinPool.submit(() -> {
-				icons.parallelStream().forEach(this::rasterize);
-				return null;
-			}).get();
-		} catch (Exception e) {
-			log.error("Error while rendering icons.", e);
-		}
-
-		// Print summary of operations
-		int iconRendered = getIconsRendered();
-		int failedIcons = getFailedIcons();
-		int fullIconCount = iconRendered - failedIcons;
-
-		log.info(fullIconCount + " Icons Rendered");
-		log.info(failedIcons + " Icons Failed");
-		log.info("Took: " + (System.currentTimeMillis() - startTime) + " ms.");
-
-		log.info("Rasterization operations completed, Took: " + (System.currentTimeMillis() - totalStartTime) + " ms.");
-	}
-
-	private void createFragmentFiles(File outputBase, String dirName) {
-		createFile(new File(outputBase, "build.properties"), "bin.includes = META-INF/,icons/,.\n");
-		createFile(new File(outputBase, ".project"),
-				"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<projectDescription>\n" + "    <name>" + dirName
-						+ ".hidpi</name>\n" + "    <comment></comment>\n" + "    <projects>\n" + "    </projects>\n"
-						+ "    <buildSpec>\n" + "        <buildCommand>\n"
-						+ "            <name>org.eclipse.pde.ManifestBuilder</name>\n" + "            <arguments>\n"
-						+ "            </arguments>\n" + "        </buildCommand>\n" + "        <buildCommand>\n"
-						+ "            <name>org.eclipse.pde.SchemaBuilder</name>\n" + "            <arguments>\n"
-						+ "            </arguments>\n" + "        </buildCommand>\n" + "    </buildSpec>\n"
-						+ "    <natures>\n" + "        <nature>org.eclipse.pde.PluginNature</nature>\n"
-						+ "    </natures>\n" + "</projectDescription>\n");
-		createFile(new File(outputBase, "META-INF/MANIFEST.MF"),
-				"Manifest-Version: 1.0\n" + "Bundle-ManifestVersion: 2\n" + "Bundle-Name: " + dirName + ".hidpi\n"
-						+ "Bundle-SymbolicName: " + dirName + ".hidpi\n" + "Bundle-Version: 0.1.0.qualifier\n"
-						+ "Fragment-Host: " + dirName + "\n");
-	}
-
-	/**
-	 * 
-	 * @param file
-	 * @param contents
-	 */
-	private void createFile(File file, String contents) {
-		try (FileWriter writer = new FileWriter(file)) {
-			file.getParentFile().mkdirs();
-			writer.write(contents);
-		} catch (IOException e) {
-			log.error(e);
-		}
-	}
-
-	/**
-	 * <p>
-	 * Uses SASS to generate a CSS style sheet for the given style name.
-	 * </p>
-	 * 
-	 * @param inputStylesheet
-	 * @return
-	 * @throws MojoExecutionException
-	 */
-	private File generateCSS(String styleName, String inputStylesheet) throws MojoExecutionException {
-		String workingDirectory = System.getProperty("user.dir");
-
-		File styleDir = new File(workingDirectory, "eclipse-css/styles/");
-		File targetStyleSheet = new File(inputStylesheet);
-		File targetStyleDir = targetStyleSheet.getParentFile();
-
-		try {
-			File outputCss = new File(targetStyleDir, styleName + ".css");
-
-			if (regenerateCss && outputCss.exists() && !outputCss.delete()) {
-				throw new MojoExecutionException(
-						"Could not delete existing CSS during preprocessing: " + outputCss.getAbsolutePath());
-			}
-
-			if (regenerateCss || !outputCss.exists()) {
-				ProcessBuilder procBuilder = new ProcessBuilder("sass", "--sourcemap=none", "-I" + styleDir,
-						targetStyleSheet.getAbsolutePath(), outputCss.getAbsolutePath()).directory(targetStyleDir);
-
-				Process process = procBuilder.start();
-
-				log.info(
-						"Running SASS precompiler: " + procBuilder.command().stream().collect(Collectors.joining(" ")));
-				int waitFor = process.waitFor();
-
-				if (waitFor > 0) {
-					throw new MojoExecutionException(
-							"Error generating CSS from SASS input, is SASS installed on your machine?");
-				}
-			}
-
-			return outputCss;
-		} catch (IOException | InterruptedException e) {
-			log.error("Error generating CSS stylesheet from SASS.", e);
-			throw new MojoExecutionException("Error while SASS preprocessing styles: " + e.getMessage(), e);
-		}
-	}
-
-	/**
-	 * <p>
-	 * Removes broken inkscape prefix from documents, preventing broken
-	 * rendering with Batik, see:
-	 * 
-	 * https://issues.apache.org/jira/browse/BATIK-1112
-	 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=493994
-	 * </p>
-	 * 
-	 * @param nodes
-	 */
-	private void removeStyleDashPrefix(Node node) {
-		NodeList nodes = node.getChildNodes();
-		int len = nodes.getLength();
-		for (int i = 0; i < len; i++) {
-			Node item = nodes.item(i);
-
-			if (item instanceof Element) {
-				Element elem = (Element) item;
-				Attr attr = elem.getAttributeNodeNS(null, "style");
-
-				if (attr != null) {
-					String style = attr.getValue();
-					String replaceAll = style.replaceAll("-inkscape", "inkscape");
-					elem.setAttributeNS(null, "style", replaceAll);
-				}
-			}
-
-			removeStyleDashPrefix(item);
-		}
-	}
-
-	/**
-	 * <p>
-	 * Strips inline CSS styles from the supplied node and all descendents.
-	 * </p>
-	 * 
-	 * @param node
-	 */
-	private void removeInlineStyle(Node node) {
-		NodeList nodes = node.getChildNodes();
-		int len = nodes.getLength();
-		for (int i = 0; i < len; i++) {
-			Node item = nodes.item(i);
-
-			if (item instanceof Element) {
-				Element elem = (Element) item;
-				elem.setAttributeNS(null, "style", "");
-			}
-
-			removeInlineStyle(item);
-		}
-	}
-
-}
diff --git a/org.eclipse.images/.gitignore b/org.eclipse.images/.gitignore
deleted file mode 100644
index 27d5189..0000000
--- a/org.eclipse.images/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-/bin/
-target/
-.sass-cache/
\ No newline at end of file
diff --git a/org.eclipse.images/.project b/org.eclipse.images/.project
deleted file mode 100644
index 087d81e..0000000
--- a/org.eclipse.images/.project
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<projectDescription>

-	<name>org.eclipse.images</name>

-	<comment></comment>

-	<projects>

-	</projects>

-	<buildSpec>

-		<buildCommand>

-			<name>org.eclipse.m2e.core.maven2Builder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-	</buildSpec>

-	<natures>

-		<nature>org.eclipse.m2e.core.maven2Nature</nature>

-	</natures>

-</projectDescription>

diff --git a/org.eclipse.images/README.md b/org.eclipse.images/README.md
deleted file mode 100644
index 065fcab..0000000
--- a/org.eclipse.images/README.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# org.eclipse.images
-
-org.eclipse.images provides svg versions of the Eclipse SDK images. The "eclipse-svg" folder contains svg version of the icons, while the "eclipse-png" folder contain generated png files. These icons can be used in custom Eclipse plug-ins or in arbitrary rich client applications.
-The "tools" folder contains the eclipse style color palette in differnent file formats:
-- As GIMP palette (file extension ".gpl") (can be used in Inkscape as well)
-- As Adobe Illustrator document (file extension ".ai")
-- As Adobe color file (file extension ".aco")
-
-# Generate png files
-
-To generate the png files based on the svg files, see the README.md file in the org.eclipse.images.renderer plug-in.
-
-When you add a file "example.svg", also add both the generated "example.png" and "example@2x.png".
-
-##License
-
-[Eclipse Public License (EPL) v1.0][1]
-
-[1]: http://wiki.eclipse.org/EPL
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/gotham/ant.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/gotham/ant.css
deleted file mode 100644
index 498b8b5..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/gotham/ant.css
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#rect3994 {
-  fill: #ffffff;
-  fill-opacity: 1;
-  stroke: #c5c5a8;
-  stroke-width: 1;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #000000;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path5160 {
-  fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5366-0);
-  fill-opacity: 1;
-  stroke: #000000;
-  stroke-width: 0.89999998;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5370-9);
-  fill-opacity: 1;
-  stroke: #000000;
-  stroke-width: 0.89999998;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5374-4);
-  fill-opacity: 1;
-  stroke: #000000;
-  stroke-width: 0.89999998;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path3982 {
-  fill: none;
-  stroke: #000000;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path3984 {
-  fill: none;
-  stroke: #000000;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path3986 {
-  fill: none;
-  stroke: #000000;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path3988 {
-  fill: none;
-  stroke: #000000;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path3992 {
-  fill: none;
-  stroke: #000000;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/gotham/ant.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/gotham/ant.scss
deleted file mode 100644
index 0bf2a11..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/gotham/ant.scss
+++ /dev/null
@@ -1,116 +0,0 @@
-@import "gotham";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#rect3994 {
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: #c5c5a8;
-	stroke-width: 1;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path5160 {
-	fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5366-0);
-	fill-opacity: 1;
-	stroke: #000000;
-	stroke-width: 0.89999998;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5370-9);
-	fill-opacity: 1;
-	stroke: #000000;
-	stroke-width: 0.89999998;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5374-4);
-	fill-opacity: 1;
-	stroke: #000000;
-	stroke-width: 0.89999998;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path3982 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3984 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3986 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3988 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3992 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/stock/ant.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/stock/ant.scss
deleted file mode 100644
index 515d9a6..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.tests.ui/styles/stock/ant.scss
+++ /dev/null
@@ -1,116 +0,0 @@
-@import "stock";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#rect3994 {
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: #c5c5a8;
-	stroke-width: 1;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path5160 {
-	fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5366-0);
-	fill-opacity: 1;
-	stroke: #000000;
-	stroke-width: 0.89999998;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5370-9);
-	fill-opacity: 1;
-	stroke: #000000;
-	stroke-width: 0.89999998;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../eclipse-svg/org.eclipse.ant.tests.ui/icons//ant.svg#radialGradient5374-4);
-	fill-opacity: 1;
-	stroke: #000000;
-	stroke-width: 0.89999998;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path3982 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3984 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3986 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3988 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path3992 {
-	fill: none;
-	stroke: #000000;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/add_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/add_co.css
deleted file mode 100644
index 927571d..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/add_co.css
+++ /dev/null
@@ -1,502 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #5c5c5c;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #aeaeae;
-  stop-opacity: 1; }
-
-#stop5593-0 {
-  stop-color: #e0e566;
-  stop-opacity: 1; }
-
-#stop5595-5 {
-  stop-color: #b0b456;
-  stop-opacity: 1; }
-
-#stop5585-3 {
-  stop-color: #426e4a;
-  stop-opacity: 1; }
-
-#stop5587-3 {
-  stop-color: #669f71;
-  stop-opacity: 1; }
-
-#stop5330-9-9-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-7-9 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5-2 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-5-8 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3088 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3090 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3095 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3097 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3102 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3104 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3109 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3111 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-9-1-5 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-7-9-2 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5-2-6 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-5-8-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3114 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3116 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3121 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3123 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3128 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3130 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3135 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3137 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-8 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-0 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-4 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-5 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-9 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-8 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-1-3 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-2 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5-3 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-8-6 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-0-3 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-4 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-3 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-3 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-4-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-5-1 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-9-4 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-8-2 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-9-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-1-3-8 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-2-9 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5-3-7 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-8-6-1 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-0-3-7 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-9-5 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-4-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-3-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-3-6 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-2-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#rect5291 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5366-0-1-2-7);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5368-1-7-3-8);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5370-9-0-9-0);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5372-5-0-9-4);
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-34 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5374-4-8-3-4);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5376-4-8-9-4);
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5581 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5618);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5620);
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/add_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/add_co.scss
deleted file mode 100644
index 8b62563..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/add_co.scss
+++ /dev/null
@@ -1,594 +0,0 @@
-@import "gotham";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #5c5c5c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #aeaeae;
-	stop-opacity: 1;
-}
-
-#stop5593-0 {
-	stop-color: #e0e566;
-	stop-opacity: 1;
-}
-
-#stop5595-5 {
-	stop-color: #b0b456;
-	stop-opacity: 1;
-}
-
-#stop5585-3 {
-	stop-color: #426e4a;
-	stop-opacity: 1;
-}
-
-#stop5587-3 {
-	stop-color: #669f71;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3088 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3090 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3095 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3097 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3102 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3104 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3109 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3111 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2-6 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3114 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3116 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3121 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3123 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3128 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3130 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3135 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3137 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-8 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-0 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-5 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-8 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-1-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-8-6 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-0-3 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-4 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-3 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-4-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-5-1 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-9-4 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-8-2 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-1-3-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-2-9 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-3-7 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-8-6-1 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-0-3-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-4-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-3-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-3-6 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-2-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5366-0-1-2-7);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5368-1-7-3-8);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5370-9-0-9-0);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5372-5-0-9-4);
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-34 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5374-4-8-3-4);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5376-4-8-9-4);
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5581 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5618);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5620);
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/alpha_mode.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/alpha_mode.css
deleted file mode 100644
index 77f0f37..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/alpha_mode.css
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4791 {
-  stop-color: #4e8fbd;
-  stop-opacity: 1; }
-
-#stop4793 {
-  stop-color: #30495a;
-  stop-opacity: 1; }
-
-#stop4775 {
-  stop-color: #8e4694;
-  stop-opacity: 1; }
-
-#stop4777 {
-  stop-color: #bc7bc1;
-  stop-opacity: 1; }
-
-#stop4765 {
-  stop-color: #77a29d;
-  stop-opacity: 1; }
-
-#stop4767 {
-  stop-color: #1b867b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#path3986 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4795);
-  fill-opacity: 1;
-  stroke: none; }
-
-#path4758 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4769);
-  fill-opacity: 1;
-  stroke: #29776f;
-  stroke-width: 0.2;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path4771 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4779);
-  fill-opacity: 1;
-  stroke: #711a78;
-  stroke-width: 0.21938443;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/alpha_mode.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/alpha_mode.scss
deleted file mode 100644
index 68672c6..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/alpha_mode.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-@import "gotham";
-
-#stop4791 {
-	stop-color: #4e8fbd;
-	stop-opacity: 1;
-}
-
-#stop4793 {
-	stop-color: #30495a;
-	stop-opacity: 1;
-}
-
-#stop4775 {
-	stop-color: #8e4694;
-	stop-opacity: 1;
-}
-
-#stop4777 {
-	stop-color: #bc7bc1;
-	stop-opacity: 1;
-}
-
-#stop4765 {
-	stop-color: #77a29d;
-	stop-opacity: 1;
-}
-
-#stop4767 {
-	stop-color: #1b867b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#path3986 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4795);
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path4758 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4769);
-	fill-opacity: 1;
-	stroke: #29776f;
-	stroke-width: 0.2;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path4771 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4779);
-	fill-opacity: 1;
-	stroke: #711a78;
-	stroke-width: 0.21938443;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/ant_targets.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/ant_targets.css
deleted file mode 100644
index 75220b4..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/ant_targets.css
+++ /dev/null
@@ -1,440 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #5c5c5c;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #aeaeae;
-  stop-opacity: 1; }
-
-#stop5330-9-9-1-5 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-7-9-2 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5-2-6 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-5-8-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3260 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3262 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3267 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3269 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3274 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3276 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3281 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3283 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-9-1-5-4 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-7-9-2-9 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5-2-6-1 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-5-8-4-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3115 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3117 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3122 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3124 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3129 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3131 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3136 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3138 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-5 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-0 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-7 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-8 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-2 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-2 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-7 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-5-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-8 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-0-4 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-7-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-3 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-3 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-5 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#rect5291 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5366-0-3-5);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#linearGradient5368-1-8-2);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5370-9-0-9);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#linearGradient5372-5-2-5);
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-1 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5374-4-7-4);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#linearGradient5376-4-7-1);
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5730-4 {
-  fill: #ffffff;
-  fill-opacity: 1;
-  stroke: #ffffff;
-  stroke-width: 0.64907944;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5730 {
-  fill: #005596;
-  fill-opacity: 1;
-  stroke: #3fa6ff;
-  stroke-width: 0.60000002;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/ant_targets.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/ant_targets.scss
deleted file mode 100644
index 27f06c1..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/ant_targets.scss
+++ /dev/null
@@ -1,514 +0,0 @@
-@import "gotham";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #5c5c5c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #aeaeae;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2-6 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3260 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3262 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3267 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3269 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3274 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3276 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3281 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3283 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1-5-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9-2-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2-6-1 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8-4-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3115 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3117 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3122 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3124 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3129 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3131 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3136 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3138 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-0 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-7 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-5-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-8 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-0-4 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-7-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-3 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-5 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5366-0-3-5);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#linearGradient5368-1-8-2);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5370-9-0-9);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#linearGradient5372-5-2-5);
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-1 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5374-4-7-4);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#linearGradient5376-4-7-1);
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5730-4 {
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: #ffffff;
-	stroke-width: 0.64907944;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5730 {
-	fill: #005596;
-	fill-opacity: 1;
-	stroke: #3fa6ff;
-	stroke-width: 0.60000002;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/exportAnt_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/exportAnt_co.css
deleted file mode 100644
index e8e2809..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/exportAnt_co.css
+++ /dev/null
@@ -1,427 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #5c5c5c;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #aeaeae;
-  stop-opacity: 1; }
-
-#stop4857 {
-  stop-color: #0d5c9a;
-  stop-opacity: 1; }
-
-#stop4859 {
-  stop-color: #3583c0;
-  stop-opacity: 1; }
-
-#stop6283-0-2-2-1-2-0-1 {
-  stop-color: #f7f9fb;
-  stop-opacity: 1; }
-
-#stop6285-5-0-9-7-6-9-9 {
-  stop-color: #ffd680;
-  stop-opacity: 1; }
-
-#stop4530-0-5-0-5 {
-  stop-color: #e0c576;
-  stop-opacity: 1; }
-
-#stop4532-7-9-3-3 {
-  stop-color: #9e7916;
-  stop-opacity: 1; }
-
-#stop5070-8-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5072-3-6 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop5211-9-5 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-5 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-7 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5330-9-9-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-7-9 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5-2 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-5-8 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3123 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3125 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3130 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3132 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3137 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3139 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3144 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3146 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-8 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-2 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-2 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-7 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-5-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-8 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-0-4 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-7-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-3 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-3 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-5 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-8-3 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-2-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-2-6 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-7-9 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-2-5 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-5-7-2 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-8-0 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-5-8-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-0-4-0 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-7-1-7 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-3-2 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-3-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-0-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-5-2 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-1-3 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#path4085 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient4900);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#path5232 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect5291 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#radialGradient5366-0-3-5-8);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient5368-1-8-2-6);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#radialGradient5370-9-0-9-0);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient5372-5-2-5-8);
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-1 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#radialGradient5374-4-7-4-3);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient5376-4-7-1-1);
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/exportAnt_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/exportAnt_co.scss
deleted file mode 100644
index 56c0236..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/exportAnt_co.scss
+++ /dev/null
@@ -1,501 +0,0 @@
-@import "gotham";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #5c5c5c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #aeaeae;
-	stop-opacity: 1;
-}
-
-#stop4857 {
-	stop-color: #0d5c9a;
-	stop-opacity: 1;
-}
-
-#stop4859 {
-	stop-color: #3583c0;
-	stop-opacity: 1;
-}
-
-#stop6283-0-2-2-1-2-0-1 {
-	stop-color: #f7f9fb;
-	stop-opacity: 1;
-}
-
-#stop6285-5-0-9-7-6-9-9 {
-	stop-color: #ffd680;
-	stop-opacity: 1;
-}
-
-#stop4530-0-5-0-5 {
-	stop-color: #e0c576;
-	stop-opacity: 1;
-}
-
-#stop4532-7-9-3-3 {
-	stop-color: #9e7916;
-	stop-opacity: 1;
-}
-
-#stop5070-8-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5072-3-6 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop5211-9-5 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3123 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3125 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3130 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3132 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3137 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3139 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3144 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3146 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-7 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-5-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-8 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-0-4 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-7-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-3 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-5 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-8-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-2-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-2-6 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-7-9 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-2-5 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-5-7-2 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-8-0 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-8-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-0-4-0 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-7-1-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-3-2 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-3-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-0-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-5-2 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-1-3 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#path4085 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient4900);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#path5232 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#radialGradient5366-0-3-5-8);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient5368-1-8-2-6);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#radialGradient5370-9-0-9-0);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient5372-5-2-5-8);
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-1 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#radialGradient5374-4-7-4-3);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//exportAnt_co.svg#linearGradient5376-4-7-1-1);
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_imported_elements.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_imported_elements.css
deleted file mode 100644
index c9e4514..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_imported_elements.css
+++ /dev/null
@@ -1,156 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5240 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5150-6-3 {
-  stop-color: #05507d;
-  stop-opacity: 1; }
-
-#stop5152-5-4 {
-  stop-color: #6b8fa5;
-  stop-opacity: 1; }
-
-#stop5240-9 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5240-9-6 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5-0 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5240-9-6-9 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5-0-3 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5240-9-6-9-8 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5-0-3-1 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect5226 {
-  opacity: 1;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5244);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000001999999997;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5261);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0-1 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5295);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0-1-8 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5329);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0-1-8-9 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5363);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path5146 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5205);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#g5142 {
-  fill: #6b8fa5;
-  fill-opacity: 1; }
-
-#path5122 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #000f6f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path5122-7 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #6b7ae2;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_imported_elements.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_imported_elements.scss
deleted file mode 100644
index 6663bf9..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_imported_elements.scss
+++ /dev/null
@@ -1,170 +0,0 @@
-@import "gotham";
-
-#stop5240 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5150-6-3 {
-	stop-color: #05507d;
-	stop-opacity: 1;
-}
-
-#stop5152-5-4 {
-	stop-color: #6b8fa5;
-	stop-opacity: 1;
-}
-
-#stop5240-9 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5240-9-6 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5-0 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5240-9-6-9 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5-0-3 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5240-9-6-9-8 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5-0-3-1 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect5226 {
-	opacity: 1;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5244);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000001999999997;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5261);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0-1 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5295);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0-1-8 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5329);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0-1-8-9 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5363);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path5146 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_imported_elements.svg#linearGradient5205);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#g5142 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-}
-
-#path5122 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #000f6f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path5122-7 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #6b7ae2;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_internal_targets.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_internal_targets.css
deleted file mode 100644
index 6b791b2..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_internal_targets.css
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#path6578 {
-  color: #000000;
-  fill: none;
-  stroke: #3d9465;
-  stroke-width: 1.3964858;
-  stroke-opacity: 1;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  stroke-miterlimit: 4;
-  stroke-dasharray: none; }
-
-#path6578-2 {
-  color: #000000;
-  fill: none;
-  stroke: #3d9465;
-  stroke-width: 2.57762099;
-  stroke-opacity: 1;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  stroke-miterlimit: 4;
-  stroke-dasharray: none; }
-
-#path6578-2-0 {
-  color: #000000;
-  fill: #20680c;
-  stroke: #20680c;
-  stroke-width: 2.03037213999999988;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  fill-opacity: 1; }
-
-#path5122 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #000f6f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path5122-7 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #6b7ae2;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_internal_targets.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_internal_targets.scss
deleted file mode 100644
index c4488e4..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_internal_targets.scss
+++ /dev/null
@@ -1,74 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#path6578 {
-	color: #000000;
-	fill: none;
-	stroke: #3d9465;
-	stroke-width: 1.3964858;
-	stroke-opacity: 1;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	stroke-miterlimit: 4;
-	stroke-dasharray: none;
-}
-
-#path6578-2 {
-	color: #000000;
-	fill: none;
-	stroke: #3d9465;
-	stroke-width: 2.57762099;
-	stroke-opacity: 1;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	stroke-miterlimit: 4;
-	stroke-dasharray: none;
-}
-
-#path6578-2-0 {
-	color: #000000;
-	fill: #20680c;
-	stroke: #20680c;
-	stroke-width: 2.03037213999999988;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	fill-opacity: 1;
-}
-
-#path5122 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #000f6f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path5122-7 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #6b7ae2;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_properties.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_properties.css
deleted file mode 100644
index 639feb2..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_properties.css
+++ /dev/null
@@ -1,223 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop6895 {
-  stop-color: #7795b6;
-  stop-opacity: 1; }
-
-#stop6897 {
-  stop-color: #7795b6;
-  stop-opacity: 0; }
-
-#stop6801 {
-  stop-color: #a6bacf;
-  stop-opacity: 1; }
-
-#stop6803 {
-  stop-color: #798da2;
-  stop-opacity: 1; }
-
-#stop6895-8 {
-  stop-color: #7795b6;
-  stop-opacity: 1; }
-
-#stop6897-2 {
-  stop-color: #7795b6;
-  stop-opacity: 0; }
-
-#stop6895-8-7 {
-  stop-color: #7795b6;
-  stop-opacity: 1; }
-
-#stop6897-2-6 {
-  stop-color: #7795b6;
-  stop-opacity: 0; }
-
-#stop6895-8-7-1 {
-  stop-color: #7795b6;
-  stop-opacity: 1; }
-
-#stop6897-2-6-4 {
-  stop-color: #7795b6;
-  stop-opacity: 0; }
-
-#layer1 {
-  display: inline; }
-
-#rect6795-7 {
-  color: #000000;
-  fill: #ffffff;
-  stroke: none;
-  stroke-width: 0.92500526000000005;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  fill-opacity: 1; }
-
-#g6722-9-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709281999999996px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#g6722-9-8-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8-5 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709282px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect6891 {
-  color: #000000;
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6899);
-  stroke-width: 1;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  opacity: 0.79264214; }
-
-#rect6891-5 {
-  color: #000000;
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6916);
-  stroke-width: 1;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect6891-5-7 {
-  color: #000000;
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6950);
-  stroke-width: 0.5807603;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect6891-5-7-2 {
-  color: #000000;
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6984);
-  stroke-width: 0.43796408;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect6795 {
-  color: #000000;
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6805);
-  stroke-width: 0.92500526;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path5122-7 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #6b7ae2;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path5122 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #000f6f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_properties.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_properties.scss
deleted file mode 100644
index 7a012ae..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_properties.scss
+++ /dev/null
@@ -1,240 +0,0 @@
-@import "gotham";
-
-#stop6895 {
-	stop-color: #7795b6;
-	stop-opacity: 1;
-}
-
-#stop6897 {
-	stop-color: #7795b6;
-	stop-opacity: 0;
-}
-
-#stop6801 {
-	stop-color: #a6bacf;
-	stop-opacity: 1;
-}
-
-#stop6803 {
-	stop-color: #798da2;
-	stop-opacity: 1;
-}
-
-#stop6895-8 {
-	stop-color: #7795b6;
-	stop-opacity: 1;
-}
-
-#stop6897-2 {
-	stop-color: #7795b6;
-	stop-opacity: 0;
-}
-
-#stop6895-8-7 {
-	stop-color: #7795b6;
-	stop-opacity: 1;
-}
-
-#stop6897-2-6 {
-	stop-color: #7795b6;
-	stop-opacity: 0;
-}
-
-#stop6895-8-7-1 {
-	stop-color: #7795b6;
-	stop-opacity: 1;
-}
-
-#stop6897-2-6-4 {
-	stop-color: #7795b6;
-	stop-opacity: 0;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect6795-7 {
-	color: #000000;
-	fill: #ffffff;
-	stroke: none;
-	stroke-width: 0.92500526000000005;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	fill-opacity: 1;
-}
-
-#g6722-9-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709281999999996px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#g6722-9-8-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8-5 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709282px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect6891 {
-	color: #000000;
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6899);
-	stroke-width: 1;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	opacity: 0.79264214;
-}
-
-#rect6891-5 {
-	color: #000000;
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6916);
-	stroke-width: 1;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect6891-5-7 {
-	color: #000000;
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6950);
-	stroke-width: 0.5807603;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect6891-5-7-2 {
-	color: #000000;
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6984);
-	stroke-width: 0.43796408;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect6795 {
-	color: #000000;
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//filter_properties.svg#linearGradient6805);
-	stroke-width: 0.92500526;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path5122-7 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #6b7ae2;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path5122 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #000f6f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_top_level.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_top_level.css
deleted file mode 100644
index c74e5ce..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_top_level.css
+++ /dev/null
@@ -1,114 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#g6722-9-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709281999999996px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#g6722-9-8-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8-5 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709282px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path7118 {
-  fill: #3979bd;
-  fill-opacity: 1;
-  stroke: #3979bd;
-  stroke-opacity: 1;
-  stroke-width: 0.5;
-  stroke-miterlimit: 4;
-  stroke-dasharray: none; }
-
-#rect7138 {
-  color: #000000;
-  fill: #e06b5e;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: #e06b5e;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  stroke-opacity: 1;
-  stroke-miterlimit: 4;
-  stroke-dasharray: none; }
-
-#path7118-2 {
-  fill: #3979bd;
-  fill-opacity: 1;
-  stroke: #3979bd;
-  stroke-width: 0.5;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5122-7 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #6b7ae2;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path5122 {
-  fill: #6b8fa5;
-  fill-opacity: 1;
-  stroke: #000f6f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_top_level.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_top_level.scss
deleted file mode 100644
index 47c9e86..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/filter_top_level.scss
+++ /dev/null
@@ -1,118 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#g6722-9-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709281999999996px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#g6722-9-8-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8-5 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709282px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path7118 {
-	fill: #3979bd;
-	fill-opacity: 1;
-	stroke: #3979bd;
-	stroke-opacity: 1;
-	stroke-width: 0.5;
-	stroke-miterlimit: 4;
-	stroke-dasharray: none;
-}
-
-#rect7138 {
-	color: #000000;
-	fill: #e06b5e;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: #e06b5e;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	stroke-opacity: 1;
-	stroke-miterlimit: 4;
-	stroke-dasharray: none;
-}
-
-#path7118-2 {
-	fill: #3979bd;
-	fill-opacity: 1;
-	stroke: #3979bd;
-	stroke-width: 0.5;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5122-7 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #6b7ae2;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path5122 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-	stroke: #000f6f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/properties.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/properties.css
deleted file mode 100644
index 4f7acd5..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/properties.css
+++ /dev/null
@@ -1,215 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop7493 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7495 {
-  stop-color: #a0b0cc;
-  stop-opacity: 1; }
-
-#stop7256 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#stop7256-5 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258-7 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#stop7256-0 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258-0 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#stop7256-5-4 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258-7-4 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect7499 {
-  color: #000000;
-  fill: #ffffff;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-4-4 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7362);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-4 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7277);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7489 {
-  opacity: 0.67558528;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7497);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7260);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-7 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7328);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-4-4-8 {
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2-4 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2-4-3 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2-4-3-9 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/properties.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/properties.scss
deleted file mode 100644
index b64439a..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/properties.scss
+++ /dev/null
@@ -1,230 +0,0 @@
-@import "gotham";
-
-#stop7493 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7495 {
-	stop-color: #a0b0cc;
-	stop-opacity: 1;
-}
-
-#stop7256 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#stop7256-5 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258-7 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#stop7256-0 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258-0 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#stop7256-5-4 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258-7-4 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect7499 {
-	color: #000000;
-	fill: #ffffff;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-4-4 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7362);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-4 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7277);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7489 {
-	opacity: 0.67558528;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7497);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7260);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-7 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//properties.svg#linearGradient7328);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-4-4-8 {
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2-4 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2-4-3 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2-4-3-9 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/refresh.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/refresh.css
deleted file mode 100644
index 5717e60..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/refresh.css
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop7586-4 {
-  stop-color: #f9cd5f;
-  stop-opacity: 1; }
-
-#stop7588-5 {
-  stop-color: #ffebb7;
-  stop-opacity: 1; }
-
-#stop7594-6 {
-  stop-color: #ad7212;
-  stop-opacity: 1; }
-
-#stop7596-9 {
-  stop-color: #875f1e;
-  stop-opacity: 1; }
-
-#stop7586-6-3 {
-  stop-color: #f9cd5f;
-  stop-opacity: 1; }
-
-#stop7588-9-9 {
-  stop-color: #ffebb7;
-  stop-opacity: 1; }
-
-#stop7594-8-9 {
-  stop-color: #ad7212;
-  stop-opacity: 1; }
-
-#stop7596-5-6 {
-  stop-color: #875f1e;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g7604 {
-  display: inline; }
-
-#path7582 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7608-3);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7610-5);
-  stroke-width: 0.80000001;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path7602 {
-  opacity: 0.85714285;
-  fill: #ffffff;
-  fill-opacity: 1;
-  stroke: none; }
-
-#g7604-6 {
-  display: inline; }
-
-#path7582-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7608-9-7);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7610-7-6);
-  stroke-width: 0.80000001;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path7602-2 {
-  opacity: 0.85714285;
-  fill: #ffffff;
-  fill-opacity: 1;
-  stroke: none; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/refresh.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/refresh.scss
deleted file mode 100644
index 31e99fe..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/refresh.scss
+++ /dev/null
@@ -1,92 +0,0 @@
-@import "gotham";
-
-#stop7586-4 {
-	stop-color: #f9cd5f;
-	stop-opacity: 1;
-}
-
-#stop7588-5 {
-	stop-color: #ffebb7;
-	stop-opacity: 1;
-}
-
-#stop7594-6 {
-	stop-color: #ad7212;
-	stop-opacity: 1;
-}
-
-#stop7596-9 {
-	stop-color: #875f1e;
-	stop-opacity: 1;
-}
-
-#stop7586-6-3 {
-	stop-color: #f9cd5f;
-	stop-opacity: 1;
-}
-
-#stop7588-9-9 {
-	stop-color: #ffebb7;
-	stop-opacity: 1;
-}
-
-#stop7594-8-9 {
-	stop-color: #ad7212;
-	stop-opacity: 1;
-}
-
-#stop7596-5-6 {
-	stop-color: #875f1e;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g7604 {
-	display: inline;
-}
-
-#path7582 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7608-3);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7610-5);
-	stroke-width: 0.80000001;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path7602 {
-	opacity: 0.85714285;
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#g7604-6 {
-	display: inline;
-}
-
-#path7582-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7608-9-7);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//refresh.svg#linearGradient7610-7-6);
-	stroke-width: 0.80000001;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path7602-2 {
-	opacity: 0.85714285;
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: none;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/remove_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/remove_co.css
deleted file mode 100644
index af5ebc2..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/remove_co.css
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4854-4 {
-  stop-color: #707070;
-  stop-opacity: 1; }
-
-#stop4856-0 {
-  stop-color: #a0a0a0;
-  stop-opacity: 1; }
-
-#stop4846-8 {
-  stop-color: #414141;
-  stop-opacity: 1; }
-
-#stop4848-8 {
-  stop-color: #535353;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect4043 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//remove_co.svg#linearGradient4047);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//remove_co.svg#linearGradient4049);
-  stroke-width: 1;
-  stroke-linecap: round;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/remove_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/remove_co.scss
deleted file mode 100644
index 008c7fc..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/remove_co.scss
+++ /dev/null
@@ -1,40 +0,0 @@
-@import "gotham";
-
-#stop4854-4 {
-	stop-color: #707070;
-	stop-opacity: 1;
-}
-
-#stop4856-0 {
-	stop-color: #a0a0a0;
-	stop-opacity: 1;
-}
-
-#stop4846-8 {
-	stop-color: #414141;
-	stop-opacity: 1;
-}
-
-#stop4848-8 {
-	stop-color: #535353;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect4043 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//remove_co.svg#linearGradient4047);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//remove_co.svg#linearGradient4049);
-	stroke-width: 1;
-	stroke-linecap: round;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/removeall_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/removeall_co.css
deleted file mode 100644
index 7294b9c..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/removeall_co.css
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4121 {
-  stop-color: #2b2b2b;
-  stop-opacity: 1; }
-
-#stop4123 {
-  stop-color: #686861;
-  stop-opacity: 1; }
-
-#stop4115 {
-  stop-color: #d8d8d8;
-  stop-opacity: 1; }
-
-#stop4117 {
-  stop-color: #d8d8d8;
-  stop-opacity: 1; }
-
-#stop4854-4 {
-  stop-color: #707070;
-  stop-opacity: 1; }
-
-#stop4856-0 {
-  stop-color: #a0a0a0;
-  stop-opacity: 1; }
-
-#stop4846-8 {
-  stop-color: #313131;
-  stop-opacity: 1; }
-
-#stop4848-8 {
-  stop-color: #696969;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect4043-2-1 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4109);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4111);
-  stroke-width: 1;
-  stroke-linecap: round;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline; }
-
-#rect4043-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4047);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4049);
-  stroke-width: 1;
-  stroke-linecap: round;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/removeall_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/removeall_co.scss
deleted file mode 100644
index 88ed2f4..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/removeall_co.scss
+++ /dev/null
@@ -1,74 +0,0 @@
-@import "gotham";
-
-#stop4121 {
-	stop-color: #2b2b2b;
-	stop-opacity: 1;
-}
-
-#stop4123 {
-	stop-color: #686861;
-	stop-opacity: 1;
-}
-
-#stop4115 {
-	stop-color: #d8d8d8;
-	stop-opacity: 1;
-}
-
-#stop4117 {
-	stop-color: #d8d8d8;
-	stop-opacity: 1;
-}
-
-#stop4854-4 {
-	stop-color: #707070;
-	stop-opacity: 1;
-}
-
-#stop4856-0 {
-	stop-color: #a0a0a0;
-	stop-opacity: 1;
-}
-
-#stop4846-8 {
-	stop-color: #313131;
-	stop-opacity: 1;
-}
-
-#stop4848-8 {
-	stop-color: #696969;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect4043-2-1 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4109);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4111);
-	stroke-width: 1;
-	stroke-linecap: round;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-}
-
-#rect4043-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4047);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//removeall_co.svg#linearGradient4049);
-	stroke-width: 1;
-	stroke-linecap: round;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/run_tool.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/run_tool.css
deleted file mode 100644
index d6f688c..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/run_tool.css
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop10800-5-2-1-8-2-8-1-7-3-7 {
-  stop-color: #4f9e55;
-  stop-opacity: 1; }
-
-#stop10806-6-8-5-3-2-95-0-5-4-8 {
-  stop-color: #3c8d49;
-  stop-opacity: 1; }
-
-#stop10802-1-5-3-0-2-0-9-8-4-3 {
-  stop-color: #a4e173;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8159 {
-  display: inline; }
-
-#path10796-2-6-0 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//run_tool.svg#linearGradient8163-2);
-  fill-opacity: 1;
-  stroke: #14733c;
-  stroke-width: 1.5;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline; }
-
-#path8117 {
-  fill: #ffffff;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/run_tool.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/run_tool.scss
deleted file mode 100644
index 154248b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/run_tool.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-@import "gotham";
-
-#stop10800-5-2-1-8-2-8-1-7-3-7 {
-	stop-color: #4f9e55;
-	stop-opacity: 1;
-}
-
-#stop10806-6-8-5-3-2-95-0-5-4-8 {
-	stop-color: #3c8d49;
-	stop-opacity: 1;
-}
-
-#stop10802-1-5-3-0-2-0-9-8-4-3 {
-	stop-color: #a4e173;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8159 {
-	display: inline;
-}
-
-#path10796-2-6-0 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//run_tool.svg#linearGradient8163-2);
-	fill-opacity: 1;
-	stroke: #14733c;
-	stroke-width: 1.5;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-}
-
-#path8117 {
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/search.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/search.css
deleted file mode 100644
index 5123d31..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/search.css
+++ /dev/null
@@ -1,185 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5450 {
-  stop-color: #ad8e5f;
-  stop-opacity: 1; }
-
-#stop5452 {
-  stop-color: #8f6e4d;
-  stop-opacity: 1; }
-
-#stop5442 {
-  stop-color: #ad8e5f;
-  stop-opacity: 1; }
-
-#stop5444 {
-  stop-color: #8f6e4d;
-  stop-opacity: 1; }
-
-#stop5430 {
-  stop-color: #f0a53b;
-  stop-opacity: 1; }
-
-#stop5438 {
-  stop-color: #f2d58f;
-  stop-opacity: 1; }
-
-#stop5436 {
-  stop-color: #efb965;
-  stop-opacity: 1; }
-
-#stop5432 {
-  stop-color: #df9833;
-  stop-opacity: 1; }
-
-#stop5380 {
-  stop-color: #f4d684;
-  stop-opacity: 1; }
-
-#stop5382 {
-  stop-color: #fcf4c6;
-  stop-opacity: 1; }
-
-#stop5384 {
-  stop-color: #fbeebc;
-  stop-opacity: 1; }
-
-#stop5386 {
-  stop-color: #eeb960;
-  stop-opacity: 1; }
-
-#stop5353 {
-  stop-color: #e4a239;
-  stop-opacity: 1; }
-
-#stop5355 {
-  stop-color: #fada7d;
-  stop-opacity: 1; }
-
-#stop5333 {
-  stop-color: #fef48d;
-  stop-opacity: 1; }
-
-#stop5341 {
-  stop-color: #fffffe;
-  stop-opacity: 1; }
-
-#stop5339 {
-  stop-color: #fffffe;
-  stop-opacity: 1; }
-
-#stop5335 {
-  stop-color: #fef48d;
-  stop-opacity: 1; }
-
-#stop5208 {
-  stop-color: #bbb8bb;
-  stop-opacity: 1; }
-
-#stop5216 {
-  stop-color: #ccc8cb;
-  stop-opacity: 1; }
-
-#stop5214 {
-  stop-color: #bdb6bc;
-  stop-opacity: 1; }
-
-#stop5210 {
-  stop-color: #9b8c98;
-  stop-opacity: 1; }
-
-#stop5111 {
-  stop-color: #906f4e;
-  stop-opacity: 1; }
-
-#stop5113 {
-  stop-color: #dfbd7f;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#rect4221-4 {
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5368);
-  stroke-width: 1.06988704;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#rect4221 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5370);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5434);
-  stroke-opacity: 1; }
-
-#path5028 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: #496da1;
-  fill-opacity: 1;
-  stroke: none;
-  stroke-width: 1px;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#rect4221-7-1 {
-  fill: #ffffc9;
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5454);
-  stroke-width: 1;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4221-7-1-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5372);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5374);
-  stroke-width: 0.87995493;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4221-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5376);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5446);
-  stroke-width: 1.0003444;
-  stroke-linejoin: round;
-  stroke-miterlimit: 3;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/search.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/search.scss
deleted file mode 100644
index d503c45..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/search.scss
+++ /dev/null
@@ -1,209 +0,0 @@
-@import "gotham";
-
-#stop5450 {
-	stop-color: #ad8e5f;
-	stop-opacity: 1;
-}
-
-#stop5452 {
-	stop-color: #8f6e4d;
-	stop-opacity: 1;
-}
-
-#stop5442 {
-	stop-color: #ad8e5f;
-	stop-opacity: 1;
-}
-
-#stop5444 {
-	stop-color: #8f6e4d;
-	stop-opacity: 1;
-}
-
-#stop5430 {
-	stop-color: #f0a53b;
-	stop-opacity: 1;
-}
-
-#stop5438 {
-	stop-color: #f2d58f;
-	stop-opacity: 1;
-}
-
-#stop5436 {
-	stop-color: #efb965;
-	stop-opacity: 1;
-}
-
-#stop5432 {
-	stop-color: #df9833;
-	stop-opacity: 1;
-}
-
-#stop5380 {
-	stop-color: #f4d684;
-	stop-opacity: 1;
-}
-
-#stop5382 {
-	stop-color: #fcf4c6;
-	stop-opacity: 1;
-}
-
-#stop5384 {
-	stop-color: #fbeebc;
-	stop-opacity: 1;
-}
-
-#stop5386 {
-	stop-color: #eeb960;
-	stop-opacity: 1;
-}
-
-#stop5353 {
-	stop-color: #e4a239;
-	stop-opacity: 1;
-}
-
-#stop5355 {
-	stop-color: #fada7d;
-	stop-opacity: 1;
-}
-
-#stop5333 {
-	stop-color: #fef48d;
-	stop-opacity: 1;
-}
-
-#stop5341 {
-	stop-color: #fffffe;
-	stop-opacity: 1;
-}
-
-#stop5339 {
-	stop-color: #fffffe;
-	stop-opacity: 1;
-}
-
-#stop5335 {
-	stop-color: #fef48d;
-	stop-opacity: 1;
-}
-
-#stop5208 {
-	stop-color: #bbb8bb;
-	stop-opacity: 1;
-}
-
-#stop5216 {
-	stop-color: #ccc8cb;
-	stop-opacity: 1;
-}
-
-#stop5214 {
-	stop-color: #bdb6bc;
-	stop-opacity: 1;
-}
-
-#stop5210 {
-	stop-color: #9b8c98;
-	stop-opacity: 1;
-}
-
-#stop5111 {
-	stop-color: #906f4e;
-	stop-opacity: 1;
-}
-
-#stop5113 {
-	stop-color: #dfbd7f;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#rect4221-4 {
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5368);
-	stroke-width: 1.06988704;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#rect4221 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5370);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5434);
-	stroke-opacity: 1;
-}
-
-#path5028 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: #496da1;
-	fill-opacity: 1;
-	stroke: none;
-	stroke-width: 1px;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#rect4221-7-1 {
-	fill: #ffffc9;
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5454);
-	stroke-width: 1;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4221-7-1-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5372);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5374);
-	stroke-width: 0.87995493;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4221-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5376);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//search.svg#linearGradient5446);
-	stroke-width: 1.0003444;
-	stroke-linejoin: round;
-	stroke-miterlimit: 3;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/synced.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/synced.css
deleted file mode 100644
index 904fda0..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/synced.css
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop8727-1-6-3 {
-  stop-color: #fbe597;
-  stop-opacity: 1; }
-
-#stop8729-2-5-0 {
-  stop-color: #fffcf0;
-  stop-opacity: 1; }
-
-#stop8719-9-3-2 {
-  stop-color: #bd8416;
-  stop-opacity: 1; }
-
-#stop8721-5-0-4 {
-  stop-color: #806229;
-  stop-opacity: 1; }
-
-#stop8727-1-6-3-7-2 {
-  stop-color: #fbe597;
-  stop-opacity: 1; }
-
-#stop8729-2-5-0-6-7 {
-  stop-color: #fffcf0;
-  stop-opacity: 1; }
-
-#stop8719-9-3-2-8-0 {
-  stop-color: #bd8416;
-  stop-opacity: 1; }
-
-#stop8721-5-0-4-7-7 {
-  stop-color: #806229;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#g8833 {
-  display: inline; }
-
-#path8715-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient8866);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient8868);
-  stroke-width: 1.06988704px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path8715-7-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient4257);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient4259);
-  stroke-width: 1.06988704px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/synced.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/synced.scss
deleted file mode 100644
index 24d027b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/elcl16/synced.scss
+++ /dev/null
@@ -1,76 +0,0 @@
-@import "gotham";
-
-#stop8727-1-6-3 {
-	stop-color: #fbe597;
-	stop-opacity: 1;
-}
-
-#stop8729-2-5-0 {
-	stop-color: #fffcf0;
-	stop-opacity: 1;
-}
-
-#stop8719-9-3-2 {
-	stop-color: #bd8416;
-	stop-opacity: 1;
-}
-
-#stop8721-5-0-4 {
-	stop-color: #806229;
-	stop-opacity: 1;
-}
-
-#stop8727-1-6-3-7-2 {
-	stop-color: #fbe597;
-	stop-opacity: 1;
-}
-
-#stop8729-2-5-0-6-7 {
-	stop-color: #fffcf0;
-	stop-opacity: 1;
-}
-
-#stop8719-9-3-2-8-0 {
-	stop-color: #bd8416;
-	stop-opacity: 1;
-}
-
-#stop8721-5-0-4-7-7 {
-	stop-color: #806229;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#g8833 {
-	display: inline;
-}
-
-#path8715-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient8866);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient8868);
-	stroke-width: 1.06988704px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path8715-7-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient4257);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//synced.svg#linearGradient4259);
-	stroke-width: 1.06988704px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/mark_occurrences.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/mark_occurrences.css
deleted file mode 100644
index 6d7904f..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/mark_occurrences.css
+++ /dev/null
@@ -1,112 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4996 {
-  stop-color: #a19a7c;
-  stop-opacity: 1; }
-
-#stop5002 {
-  stop-color: #a29d80;
-  stop-opacity: 1; }
-
-#stop4998 {
-  stop-color: #c5c3b5;
-  stop-opacity: 1; }
-
-#stop5004 {
-  stop-color: #a29d80;
-  stop-opacity: 1; }
-
-#stop5000 {
-  stop-color: #9e9070;
-  stop-opacity: 1; }
-
-#stop4978 {
-  stop-color: #a8a38c;
-  stop-opacity: 1; }
-
-#stop4984 {
-  stop-color: #c5c3b5;
-  stop-opacity: 1; }
-
-#stop4980 {
-  stop-color: #a19a7c;
-  stop-opacity: 1; }
-
-#stop4962 {
-  stop-color: #eac826;
-  stop-opacity: 1; }
-
-#stop4964 {
-  stop-color: #c5a334;
-  stop-opacity: 1; }
-
-#stop4954 {
-  stop-color: #fbdd83;
-  stop-opacity: 1; }
-
-#stop4970 {
-  stop-color: #fdf39f;
-  stop-opacity: 1; }
-
-#stop4968 {
-  stop-color: #fee745;
-  stop-opacity: 1; }
-
-#stop4956 {
-  stop-color: #eac826;
-  stop-opacity: 1; }
-
-#stop4944 {
-  stop-color: #f5d71e;
-  stop-opacity: 1; }
-
-#stop4946 {
-  stop-color: #fdf39f;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#rect4172 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4948);
-  fill-opacity: 1;
-  stroke: none; }
-
-#path4950 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4958);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4966);
-  stroke-width: 1.06988704px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path4972 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4982);
-  fill-opacity: 1;
-  stroke: #999072;
-  stroke-width: 1.06988704px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path4974 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4992);
-  fill-opacity: 1;
-  stroke: #9c9170;
-  stroke-width: 1.06988704px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/mark_occurrences.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/mark_occurrences.scss
deleted file mode 100644
index 55405be..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/mark_occurrences.scss
+++ /dev/null
@@ -1,126 +0,0 @@
-@import "gotham";
-
-#stop4996 {
-	stop-color: #a19a7c;
-	stop-opacity: 1;
-}
-
-#stop5002 {
-	stop-color: #a29d80;
-	stop-opacity: 1;
-}
-
-#stop4998 {
-	stop-color: #c5c3b5;
-	stop-opacity: 1;
-}
-
-#stop5004 {
-	stop-color: #a29d80;
-	stop-opacity: 1;
-}
-
-#stop5000 {
-	stop-color: #9e9070;
-	stop-opacity: 1;
-}
-
-#stop4978 {
-	stop-color: #a8a38c;
-	stop-opacity: 1;
-}
-
-#stop4984 {
-	stop-color: #c5c3b5;
-	stop-opacity: 1;
-}
-
-#stop4980 {
-	stop-color: #a19a7c;
-	stop-opacity: 1;
-}
-
-#stop4962 {
-	stop-color: #eac826;
-	stop-opacity: 1;
-}
-
-#stop4964 {
-	stop-color: #c5a334;
-	stop-opacity: 1;
-}
-
-#stop4954 {
-	stop-color: #fbdd83;
-	stop-opacity: 1;
-}
-
-#stop4970 {
-	stop-color: #fdf39f;
-	stop-opacity: 1;
-}
-
-#stop4968 {
-	stop-color: #fee745;
-	stop-opacity: 1;
-}
-
-#stop4956 {
-	stop-color: #eac826;
-	stop-opacity: 1;
-}
-
-#stop4944 {
-	stop-color: #f5d71e;
-	stop-opacity: 1;
-}
-
-#stop4946 {
-	stop-color: #fdf39f;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#rect4172 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4948);
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path4950 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4958);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4966);
-	stroke-width: 1.06988704px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path4972 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4982);
-	fill-opacity: 1;
-	stroke: #999072;
-	stroke-width: 1.06988704px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path4974 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//mark_occurrences.svg#linearGradient4992);
-	fill-opacity: 1;
-	stroke: #9c9170;
-	stroke-width: 1.06988704px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/segment_edit.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/segment_edit.css
deleted file mode 100644
index 69e817b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/segment_edit.css
+++ /dev/null
@@ -1,219 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5353 {
-  stop-color: #6f8db9;
-  stop-opacity: 1; }
-
-#stop5355 {
-  stop-color: #1b639e;
-  stop-opacity: 1; }
-
-#stop5347 {
-  stop-color: #796e63;
-  stop-opacity: 1; }
-
-#stop5349 {
-  stop-color: #a09d8c;
-  stop-opacity: 1; }
-
-#stop5307 {
-  stop-color: #c6b571;
-  stop-opacity: 1; }
-
-#stop5309 {
-  stop-color: #8d7a55;
-  stop-opacity: 1; }
-
-#stop5265 {
-  stop-color: #c7b571;
-  stop-opacity: 1; }
-
-#stop5267 {
-  stop-color: #a09d8c;
-  stop-opacity: 1; }
-
-#stop5257 {
-  stop-color: #f9fafc;
-  stop-opacity: 1; }
-
-#stop5259 {
-  stop-color: #dee9f7;
-  stop-opacity: 1; }
-
-#stop5249 {
-  stop-color: #f9fafc;
-  stop-opacity: 1; }
-
-#stop5251 {
-  stop-color: #f2f5fb;
-  stop-opacity: 1; }
-
-#stop5243 {
-  stop-color: #879cc0;
-  stop-opacity: 1; }
-
-#stop5245 {
-  stop-color: #677da9;
-  stop-opacity: 1; }
-
-#stop5236 {
-  stop-color: #879cc0;
-  stop-opacity: 1; }
-
-#stop5238 {
-  stop-color: #677da9;
-  stop-opacity: 1; }
-
-#stop5230 {
-  stop-color: #879cc0;
-  stop-opacity: 1; }
-
-#stop5232 {
-  stop-color: #677da9;
-  stop-opacity: 1; }
-
-#stop5216 {
-  stop-color: #879cc0;
-  stop-opacity: 1; }
-
-#stop5218 {
-  stop-color: #677da9;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#rect4172-1 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5261);
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5269);
-  stroke-width: 1.06988704000000000;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942 {
-  fill: none;
-  stroke: none; }
-
-#rect4942-1 {
-  fill: none;
-  stroke: none;
-  display: inline; }
-
-#rect4942-1-7 {
-  fill: none;
-  stroke: none;
-  display: inline; }
-
-#rect4942-1-7-4-0-9-4-8 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8-2 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8-2-4 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5220);
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5-5 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5-5-1 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5-5-1-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5226);
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4-6 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5286);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect4942-1-7-4-0-9-4-6-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5326);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect4172 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5253);
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5357);
-  stroke-width: 0.99999994000000003;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5222);
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9 {
-  fill: #677da9;
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
-
-#rect4942-1-7-4-0-9-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5224);
-  stroke: none;
-  display: inline;
-  fill-opacity: 1; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/segment_edit.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/segment_edit.scss
deleted file mode 100644
index 078cdca..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/etool16/segment_edit.scss
+++ /dev/null
@@ -1,252 +0,0 @@
-@import "gotham";
-
-#stop5353 {
-	stop-color: #6f8db9;
-	stop-opacity: 1;
-}
-
-#stop5355 {
-	stop-color: #1b639e;
-	stop-opacity: 1;
-}
-
-#stop5347 {
-	stop-color: #796e63;
-	stop-opacity: 1;
-}
-
-#stop5349 {
-	stop-color: #a09d8c;
-	stop-opacity: 1;
-}
-
-#stop5307 {
-	stop-color: #c6b571;
-	stop-opacity: 1;
-}
-
-#stop5309 {
-	stop-color: #8d7a55;
-	stop-opacity: 1;
-}
-
-#stop5265 {
-	stop-color: #c7b571;
-	stop-opacity: 1;
-}
-
-#stop5267 {
-	stop-color: #a09d8c;
-	stop-opacity: 1;
-}
-
-#stop5257 {
-	stop-color: #f9fafc;
-	stop-opacity: 1;
-}
-
-#stop5259 {
-	stop-color: #dee9f7;
-	stop-opacity: 1;
-}
-
-#stop5249 {
-	stop-color: #f9fafc;
-	stop-opacity: 1;
-}
-
-#stop5251 {
-	stop-color: #f2f5fb;
-	stop-opacity: 1;
-}
-
-#stop5243 {
-	stop-color: #879cc0;
-	stop-opacity: 1;
-}
-
-#stop5245 {
-	stop-color: #677da9;
-	stop-opacity: 1;
-}
-
-#stop5236 {
-	stop-color: #879cc0;
-	stop-opacity: 1;
-}
-
-#stop5238 {
-	stop-color: #677da9;
-	stop-opacity: 1;
-}
-
-#stop5230 {
-	stop-color: #879cc0;
-	stop-opacity: 1;
-}
-
-#stop5232 {
-	stop-color: #677da9;
-	stop-opacity: 1;
-}
-
-#stop5216 {
-	stop-color: #879cc0;
-	stop-opacity: 1;
-}
-
-#stop5218 {
-	stop-color: #677da9;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#rect4172-1 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5261);
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5269);
-	stroke-width: 1.06988704000000000;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942 {
-	fill: none;
-	stroke: none;
-}
-
-#rect4942-1 {
-	fill: none;
-	stroke: none;
-	display: inline;
-}
-
-#rect4942-1-7 {
-	fill: none;
-	stroke: none;
-	display: inline;
-}
-
-#rect4942-1-7-4-0-9-4-8 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8-2 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8-2-4 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5220);
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5-5 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5-5-1 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-8-8-2-4-5-5-1-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5226);
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4-6 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5286);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect4942-1-7-4-0-9-4-6-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5326);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect4172 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5253);
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5357);
-	stroke-width: 0.99999994000000003;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5222);
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9 {
-	fill: #677da9;
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
-#rect4942-1-7-4-0-9-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/etool16//segment_edit.svg#linearGradient5224);
-	stroke: none;
-	display: inline;
-	fill-opacity: 1;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/eview16/ant_view.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/eview16/ant_view.css
deleted file mode 100644
index 6d70e3d..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/eview16/ant_view.css
+++ /dev/null
@@ -1,453 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop3868 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3862 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3846 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5070-8-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5072-3-6 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4530-0-5-0-5 {
-  stop-color: #e0c576;
-  stop-opacity: 1; }
-
-#stop4532-7-9-3-3 {
-  stop-color: #9e7916;
-  stop-opacity: 1; }
-
-#stop6283-0-2-2-1-2-0-1 {
-  stop-color: #f7f9fb;
-  stop-opacity: 1; }
-
-#stop6285-5-0-9-7-6-9-9 {
-  stop-color: #ffd680;
-  stop-opacity: 1; }
-
-#stop3846-3 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-1 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-3 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-36 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-6 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-5 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-6 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-0 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-4 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-19 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-30 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-3 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-3 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-5 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-8 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-2 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-1 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-5 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-0 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-7 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-6 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-4 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-6 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-2 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-3 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-4 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-9 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#path5232 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect5291 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#radialGradient5366-0);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#linearGradient5368-1);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#radialGradient5370-9);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#linearGradient5372-5);
-  stroke-width: 0.74850892999999985;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#radialGradient5374-4);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#linearGradient5376-4);
-  stroke-width: 0.76813984000000002;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984000000002;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984000000002;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/eview16/ant_view.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/eview16/ant_view.scss
deleted file mode 100644
index 4c13ecc..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/eview16/ant_view.scss
+++ /dev/null
@@ -1,534 +0,0 @@
-@import "gotham";
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5070-8-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5072-3-6 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4530-0-5-0-5 {
-	stop-color: #e0c576;
-	stop-opacity: 1;
-}
-
-#stop4532-7-9-3-3 {
-	stop-color: #9e7916;
-	stop-opacity: 1;
-}
-
-#stop6283-0-2-2-1-2-0-1 {
-	stop-color: #f7f9fb;
-	stop-opacity: 1;
-}
-
-#stop6285-5-0-9-7-6-9-9 {
-	stop-color: #ffd680;
-	stop-opacity: 1;
-}
-
-#stop3846-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-1 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-3 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-36 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-6 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-5 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-6 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-0 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-4 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-19 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-30 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-3 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-5 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-8 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-1 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-5 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-0 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-6 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-4 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-6 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-4 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-9 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#path5232 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#radialGradient5366-0);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#linearGradient5368-1);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#radialGradient5370-9);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#linearGradient5372-5);
-	stroke-width: 0.74850892999999985;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#radialGradient5374-4);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/eview16//ant_view.svg#linearGradient5376-4);
-	stroke-width: 0.76813984000000002;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984000000002;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984000000002;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant.css
deleted file mode 100644
index 8eeafe3..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant.css
+++ /dev/null
@@ -1,453 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop3868 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3862 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3846 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5070-8-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5072-3-6 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4530-0-5-0-5 {
-  stop-color: #e0c576;
-  stop-opacity: 1; }
-
-#stop4532-7-9-3-3 {
-  stop-color: #9e7916;
-  stop-opacity: 1; }
-
-#stop6283-0-2-2-1-2-0-1 {
-  stop-color: #f7f9fb;
-  stop-opacity: 1; }
-
-#stop6285-5-0-9-7-6-9-9 {
-  stop-color: #ffd680;
-  stop-opacity: 1; }
-
-#stop3846-3 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-1 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-3 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-36 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-6 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-5 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-6 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-0 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-4 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-19 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-30 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-3 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-3 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-5 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-8 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-2 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-1 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-5 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-0 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-7 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-6 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-4 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-6 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-2 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-3 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-4 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-9 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#path5232 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect5291 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#radialGradient5366-0);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#linearGradient5368-1);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#radialGradient5370-9);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#linearGradient5372-5);
-  stroke-width: 0.74850892999999985;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#radialGradient5374-4);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#linearGradient5376-4);
-  stroke-width: 0.76813984000000002;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984000000002;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984000000002;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant.scss
deleted file mode 100644
index 3c4db8e..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant.scss
+++ /dev/null
@@ -1,534 +0,0 @@
-@import "gotham";
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5070-8-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5072-3-6 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4530-0-5-0-5 {
-	stop-color: #e0c576;
-	stop-opacity: 1;
-}
-
-#stop4532-7-9-3-3 {
-	stop-color: #9e7916;
-	stop-opacity: 1;
-}
-
-#stop6283-0-2-2-1-2-0-1 {
-	stop-color: #f7f9fb;
-	stop-opacity: 1;
-}
-
-#stop6285-5-0-9-7-6-9-9 {
-	stop-color: #ffd680;
-	stop-opacity: 1;
-}
-
-#stop3846-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-1 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-3 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-36 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-6 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-5 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-6 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-0 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-4 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-19 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-30 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-3 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-5 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-8 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-1 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-5 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-0 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-6 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-4 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-6 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-4 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-9 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#path5232 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#radialGradient5366-0);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#linearGradient5368-1);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#radialGradient5370-9);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#linearGradient5372-5);
-	stroke-width: 0.74850892999999985;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#radialGradient5374-4);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant.svg#linearGradient5376-4);
-	stroke-width: 0.76813984000000002;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984000000002;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984000000002;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_buildfile.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_buildfile.css
deleted file mode 100644
index 32378f2..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_buildfile.css
+++ /dev/null
@@ -1,607 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4130 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4132 {
-  stop-color: #424242;
-  stop-opacity: 0; }
-
-#stop4118 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop4120 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop4122 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop3954 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3956 {
-  stop-color: #f4f4f4;
-  stop-opacity: 1; }
-
-#stop3870 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop4813 {
-  stop-color: #9f6716;
-  stop-opacity: 1; }
-
-#stop4815 {
-  stop-color: #dfd4c4;
-  stop-opacity: 1; }
-
-#stop4803 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4805 {
-  stop-color: #b4ccdf;
-  stop-opacity: 1; }
-
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #5c5c5c;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #aeaeae;
-  stop-opacity: 1; }
-
-#stop6283-0-2-2-1-2-0-1 {
-  stop-color: #f7f9fb;
-  stop-opacity: 1; }
-
-#stop6285-5-0-9-7-6-9-9 {
-  stop-color: #ffd680;
-  stop-opacity: 1; }
-
-#stop4530-0-5-0-5 {
-  stop-color: #e0c576;
-  stop-opacity: 1; }
-
-#stop4532-7-9-3-3 {
-  stop-color: #9e7916;
-  stop-opacity: 1; }
-
-#stop5070-8-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5072-3-6 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop5211-9-7 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-3 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-9 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5330-9-9-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8-9-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-7-2 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4-3-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3266 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3268 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3273 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3275 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3280 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3282 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3287 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop3289 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3870-0 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876-4 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872-5 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop3870-0-4 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876-4-3 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872-5-6 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop4130-2 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4132-9 {
-  stop-color: #424242;
-  stop-opacity: 0; }
-
-#stop4130-2-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4132-9-0 {
-  stop-color: #424242;
-  stop-opacity: 0; }
-
-#stop3870-0-2 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876-4-9 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872-5-7 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop4118-0 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop4120-4 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop4122-0 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop3870-0-4-4 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876-4-3-2 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872-5-6-2 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop3870-0-0 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876-4-8 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872-5-3 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop4130-1 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4132-5 {
-  stop-color: #424242;
-  stop-opacity: 0; }
-
-#stop4130-2-4 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4132-9-7 {
-  stop-color: #424242;
-  stop-opacity: 0; }
-
-#stop4130-2-7-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4132-9-0-0 {
-  stop-color: #424242;
-  stop-opacity: 0; }
-
-#stop3870-0-2-7 {
-  stop-color: #b2b2bf;
-  stop-opacity: 1; }
-
-#stop3876-4-9-6 {
-  stop-color: #79798e;
-  stop-opacity: 1; }
-
-#stop3872-5-7-6 {
-  stop-color: #c0c0cb;
-  stop-opacity: 1; }
-
-#stop3846 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-96 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-97 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-9 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-2 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-5 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-7 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-1 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-96-5 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-6 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-97-7 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-9-6 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-2-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-9 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-6 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-7 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-9-9 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#path4031 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient3241);
-  fill-opacity: 1;
-  stroke: #b4903d;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#path4809 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient3243);
-  fill-opacity: 1;
-  stroke: none; }
-
-#g5354 {
-  display: inline; }
-
-#path5232 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect5291 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#radialGradient5366-0-3);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient5368-1-8);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#radialGradient5370-9-6);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient5372-5-7);
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#radialGradient5374-4-5);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient5376-4-0);
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_buildfile.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_buildfile.scss
deleted file mode 100644
index 45a3494..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_buildfile.scss
+++ /dev/null
@@ -1,725 +0,0 @@
-@import "gotham";
-
-#stop4130 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4132 {
-	stop-color: #424242;
-	stop-opacity: 0;
-}
-
-#stop4118 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop4120 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop4122 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop3954 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3956 {
-	stop-color: #f4f4f4;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop4813 {
-	stop-color: #9f6716;
-	stop-opacity: 1;
-}
-
-#stop4815 {
-	stop-color: #dfd4c4;
-	stop-opacity: 1;
-}
-
-#stop4803 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4805 {
-	stop-color: #b4ccdf;
-	stop-opacity: 1;
-}
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #5c5c5c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #aeaeae;
-	stop-opacity: 1;
-}
-
-#stop6283-0-2-2-1-2-0-1 {
-	stop-color: #f7f9fb;
-	stop-opacity: 1;
-}
-
-#stop6285-5-0-9-7-6-9-9 {
-	stop-color: #ffd680;
-	stop-opacity: 1;
-}
-
-#stop4530-0-5-0-5 {
-	stop-color: #e0c576;
-	stop-opacity: 1;
-}
-
-#stop4532-7-9-3-3 {
-	stop-color: #9e7916;
-	stop-opacity: 1;
-}
-
-#stop5070-8-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5072-3-6 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop5211-9-7 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-3 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-9-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-7-2 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-3-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3266 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3268 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3273 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3275 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3280 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3282 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3287 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3289 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3870-0 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876-4 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872-5 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop3870-0-4 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876-4-3 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872-5-6 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop4130-2 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4132-9 {
-	stop-color: #424242;
-	stop-opacity: 0;
-}
-
-#stop4130-2-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4132-9-0 {
-	stop-color: #424242;
-	stop-opacity: 0;
-}
-
-#stop3870-0-2 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876-4-9 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872-5-7 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop4118-0 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop4120-4 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop4122-0 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop3870-0-4-4 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876-4-3-2 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872-5-6-2 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop3870-0-0 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876-4-8 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872-5-3 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop4130-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4132-5 {
-	stop-color: #424242;
-	stop-opacity: 0;
-}
-
-#stop4130-2-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4132-9-7 {
-	stop-color: #424242;
-	stop-opacity: 0;
-}
-
-#stop4130-2-7-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4132-9-0-0 {
-	stop-color: #424242;
-	stop-opacity: 0;
-}
-
-#stop3870-0-2-7 {
-	stop-color: #b2b2bf;
-	stop-opacity: 1;
-}
-
-#stop3876-4-9-6 {
-	stop-color: #79798e;
-	stop-opacity: 1;
-}
-
-#stop3872-5-7-6 {
-	stop-color: #c0c0cb;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-96 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-97 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-9 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-5 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-7 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-1 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-96-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-6 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-97-7 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-9-6 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-2-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-9 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-6 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-7 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-9-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#path4031 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient3241);
-	fill-opacity: 1;
-	stroke: #b4903d;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#path4809 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient3243);
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#path5232 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#radialGradient5366-0-3);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient5368-1-8);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#radialGradient5370-9-6);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient5372-5-7);
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#radialGradient5374-4-5);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_buildfile.svg#linearGradient5376-4-0);
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_target_err.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_target_err.css
deleted file mode 100644
index 40cd929..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_target_err.css
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4882 {
-  stop-color: #c93e35;
-  stop-opacity: 1; }
-
-#stop4884 {
-  stop-color: #c8192a;
-  stop-opacity: 1; }
-
-#stop10800-5-2-1-8-2-8-1-7-3-7 {
-  stop-color: #eb6d71;
-  stop-opacity: 1; }
-
-#stop10806-6-8-5-3-2-95-0-5-4-8 {
-  stop-color: #f13f53;
-  stop-opacity: 1; }
-
-#stop10802-1-5-3-0-2-0-9-8-4-3 {
-  stop-color: #f7a29a;
-  stop-opacity: 1; }
-
-#stop4882-5 {
-  stop-color: #c93e35;
-  stop-opacity: 1; }
-
-#stop4884-5 {
-  stop-color: #c8192a;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8159 {
-  display: inline; }
-
-#path10796-2-6-0 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_target_err.svg#linearGradient8163-2);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_target_err.svg#linearGradient4886);
-  stroke-width: 2.10502887;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline; }
-
-#path4911-7 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: #ffffff;
-  fill-opacity: 1;
-  stroke: none;
-  stroke-width: 1px;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#path4911-7-4 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: #ffffff;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1px;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#path10796-2-6-0-1 {
-  fill: none;
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_target_err.svg#linearGradient4986);
-  stroke-width: 2.10502886999999990;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_target_err.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_target_err.scss
deleted file mode 100644
index c629c8b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/ant_target_err.scss
+++ /dev/null
@@ -1,138 +0,0 @@
-@import "gotham";
-
-#stop4882 {
-	stop-color: #c93e35;
-	stop-opacity: 1;
-}
-
-#stop4884 {
-	stop-color: #c8192a;
-	stop-opacity: 1;
-}
-
-#stop10800-5-2-1-8-2-8-1-7-3-7 {
-	stop-color: #eb6d71;
-	stop-opacity: 1;
-}
-
-#stop10806-6-8-5-3-2-95-0-5-4-8 {
-	stop-color: #f13f53;
-	stop-opacity: 1;
-}
-
-#stop10802-1-5-3-0-2-0-9-8-4-3 {
-	stop-color: #f7a29a;
-	stop-opacity: 1;
-}
-
-#stop4882-5 {
-	stop-color: #c93e35;
-	stop-opacity: 1;
-}
-
-#stop4884-5 {
-	stop-color: #c8192a;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8159 {
-	display: inline;
-}
-
-#path10796-2-6-0 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_target_err.svg#linearGradient8163-2);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_target_err.svg#linearGradient4886);
-	stroke-width: 2.10502887;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-}
-
-#path4911-7 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: #ffffff;
-	fill-opacity: 1;
-	stroke: none;
-	stroke-width: 1px;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#path4911-7-4 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: #ffffff;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1px;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#path10796-2-6-0-1 {
-	fill: none;
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//ant_target_err.svg#linearGradient4986);
-	stroke-width: 2.10502886999999990;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/classpath.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/classpath.css
deleted file mode 100644
index 1f7fdc6..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/classpath.css
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop8727-1-6-3 {
-  stop-color: #fbe597;
-  stop-opacity: 1; }
-
-#stop8729-2-5-0 {
-  stop-color: #fffcf0;
-  stop-opacity: 1; }
-
-#stop8719-9-3-2 {
-  stop-color: #bd8416;
-  stop-opacity: 1; }
-
-#stop8721-5-0-4 {
-  stop-color: #806229;
-  stop-opacity: 1; }
-
-#stop8727-1-6-3-167-9 {
-  stop-color: #fbe597;
-  stop-opacity: 1; }
-
-#stop8729-2-5-0-6-1 {
-  stop-color: #fffcf0;
-  stop-opacity: 1; }
-
-#stop8719-9-3-2-3-3 {
-  stop-color: #bd8416;
-  stop-opacity: 1; }
-
-#stop8721-5-0-4-6-6 {
-  stop-color: #806229;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#g8833 {
-  display: inline; }
-
-#path8715-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient8866);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient8868);
-  stroke-width: 1.04362285000000021;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path8715-7-01 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient4295);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient4297);
-  stroke-width: 1.04074061000000007;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/classpath.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/classpath.scss
deleted file mode 100644
index e32ab2e..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/classpath.scss
+++ /dev/null
@@ -1,80 +0,0 @@
-@import "gotham";
-
-#stop8727-1-6-3 {
-	stop-color: #fbe597;
-	stop-opacity: 1;
-}
-
-#stop8729-2-5-0 {
-	stop-color: #fffcf0;
-	stop-opacity: 1;
-}
-
-#stop8719-9-3-2 {
-	stop-color: #bd8416;
-	stop-opacity: 1;
-}
-
-#stop8721-5-0-4 {
-	stop-color: #806229;
-	stop-opacity: 1;
-}
-
-#stop8727-1-6-3-167-9 {
-	stop-color: #fbe597;
-	stop-opacity: 1;
-}
-
-#stop8729-2-5-0-6-1 {
-	stop-color: #fffcf0;
-	stop-opacity: 1;
-}
-
-#stop8719-9-3-2-3-3 {
-	stop-color: #bd8416;
-	stop-opacity: 1;
-}
-
-#stop8721-5-0-4-6-6 {
-	stop-color: #806229;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#g8833 {
-	display: inline;
-}
-
-#path8715-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient8866);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient8868);
-	stroke-width: 1.04362285000000021;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path8715-7-01 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient4295);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//classpath.svg#linearGradient4297);
-	stroke-width: 1.04074061000000007;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/defaulttarget_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/defaulttarget_obj.css
deleted file mode 100644
index ac16b27..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/defaulttarget_obj.css
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#path6578-1 {
-  color: #000000;
-  fill: #88aeca;
-  fill-opacity: 1;
-  stroke: #3d6e94;
-  stroke-width: 1.39648581;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path6578-2-7 {
-  color: #000000;
-  fill: none;
-  stroke: #3d6e94;
-  stroke-width: 2.57762098;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path6578-2-0-4 {
-  color: #000000;
-  fill: #3d6e94;
-  fill-opacity: 1;
-  stroke: #3d6e94;
-  stroke-width: 2.03037214;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path4934-6 {
-  fill: none;
-  stroke: #ffffff;
-  stroke-width: 1.33808279px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path4934 {
-  fill: #3977b0;
-  fill-opacity: 1;
-  stroke: #1e64a3;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/defaulttarget_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/defaulttarget_obj.scss
deleted file mode 100644
index c4d3693..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/defaulttarget_obj.scss
+++ /dev/null
@@ -1,73 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#path6578-1 {
-	color: #000000;
-	fill: #88aeca;
-	fill-opacity: 1;
-	stroke: #3d6e94;
-	stroke-width: 1.39648581;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path6578-2-7 {
-	color: #000000;
-	fill: none;
-	stroke: #3d6e94;
-	stroke-width: 2.57762098;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path6578-2-0-4 {
-	color: #000000;
-	fill: #3d6e94;
-	fill-opacity: 1;
-	stroke: #3d6e94;
-	stroke-width: 2.03037214;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path4934-6 {
-	fill: none;
-	stroke: #ffffff;
-	stroke-width: 1.33808279px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path4934 {
-	fill: #3977b0;
-	fill-opacity: 1;
-	stroke: #1e64a3;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/eclipse_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/eclipse_obj.css
deleted file mode 100644
index acb3010..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/eclipse_obj.css
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#path4880 {
-  color: #000000;
-  fill: #5a5194;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.44999999;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect4882 {
-  color: #000000;
-  fill: #7386ef;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.44999999;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect4882-2 {
-  color: #000000;
-  fill: #7386ef;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.44999999;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/eclipse_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/eclipse_obj.scss
deleted file mode 100644
index ccebabc..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/eclipse_obj.scss
+++ /dev/null
@@ -1,48 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#path4880 {
-	color: #000000;
-	fill: #5a5194;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.44999999;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect4882 {
-	color: #000000;
-	fill: #7386ef;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.44999999;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect4882-2 {
-	color: #000000;
-	fill: #7386ef;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.44999999;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/import_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/import_obj.css
deleted file mode 100644
index d3fcf8b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/import_obj.css
+++ /dev/null
@@ -1,137 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5240 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5150-6-3 {
-  stop-color: #05507d;
-  stop-opacity: 1; }
-
-#stop5152-5-4 {
-  stop-color: #6b8fa5;
-  stop-opacity: 1; }
-
-#stop5240-9 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5240-9-6 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5-0 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5240-9-6-9 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5-0-3 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#stop5240-9-6-9-8 {
-  stop-color: #6d83ac;
-  stop-opacity: 1; }
-
-#stop5242-5-0-3-1 {
-  stop-color: #aeb9ce;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect5226 {
-  opacity: 1;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5244);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000001999999997;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5261);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0-1 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5295);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0-1-8 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5329);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect5226-0-1-8-9 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5363);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1.10000002;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path5146 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5205);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#g5142 {
-  fill: #6b8fa5;
-  fill-opacity: 1; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/import_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/import_obj.scss
deleted file mode 100644
index d97dd7b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/import_obj.scss
+++ /dev/null
@@ -1,149 +0,0 @@
-@import "gotham";
-
-#stop5240 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5150-6-3 {
-	stop-color: #05507d;
-	stop-opacity: 1;
-}
-
-#stop5152-5-4 {
-	stop-color: #6b8fa5;
-	stop-opacity: 1;
-}
-
-#stop5240-9 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5240-9-6 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5-0 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5240-9-6-9 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5-0-3 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#stop5240-9-6-9-8 {
-	stop-color: #6d83ac;
-	stop-opacity: 1;
-}
-
-#stop5242-5-0-3-1 {
-	stop-color: #aeb9ce;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect5226 {
-	opacity: 1;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5244);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000001999999997;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5261);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0-1 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5295);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0-1-8 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5329);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect5226-0-1-8-9 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5363);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1.10000002;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path5146 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//import_obj.svg#linearGradient5205);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#g5142 {
-	fill: #6b8fa5;
-	fill-opacity: 1;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/macrodef_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/macrodef_obj.css
deleted file mode 100644
index 154e1a2..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/macrodef_obj.css
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5118 {
-  stop-color: #fffab5;
-  stop-opacity: 1; }
-
-#stop5120 {
-  stop-color: #f0e660;
-  stop-opacity: 1; }
-
-#stop5110 {
-  stop-color: #fffab9;
-  stop-opacity: 1; }
-
-#stop5112 {
-  stop-color: #adaa7d;
-  stop-opacity: 1; }
-
-#stop4974-1 {
-  stop-color: #c7e3e7;
-  stop-opacity: 1; }
-
-#stop4976-54 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g4399 {
-  display: inline; }
-
-#g4087 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient4418-3);
-  fill-opacity: 1; }
-
-#g5102 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient5106); }
-
-#path4332 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient5123);
-  fill-opacity: 1;
-  stroke: #243253;
-  stroke-width: 0.24506418;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path4330 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient5114);
-  fill-opacity: 1;
-  stroke: #5e562f;
-  stroke-width: 0.24506418;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5125 {
-  fill: none;
-  stroke: #243253;
-  stroke-width: 0.40000001;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/macrodef_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/macrodef_obj.scss
deleted file mode 100644
index 1b0e081..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/macrodef_obj.scss
+++ /dev/null
@@ -1,84 +0,0 @@
-@import "gotham";
-
-#stop5118 {
-	stop-color: #fffab5;
-	stop-opacity: 1;
-}
-
-#stop5120 {
-	stop-color: #f0e660;
-	stop-opacity: 1;
-}
-
-#stop5110 {
-	stop-color: #fffab9;
-	stop-opacity: 1;
-}
-
-#stop5112 {
-	stop-color: #adaa7d;
-	stop-opacity: 1;
-}
-
-#stop4974-1 {
-	stop-color: #c7e3e7;
-	stop-opacity: 1;
-}
-
-#stop4976-54 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g4399 {
-	display: inline;
-}
-
-#g4087 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient4418-3);
-	fill-opacity: 1;
-}
-
-#g5102 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient5106);
-}
-
-#path4332 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient5123);
-	fill-opacity: 1;
-	stroke: #243253;
-	stroke-width: 0.24506418;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path4330 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//macrodef_obj.svg#linearGradient5114);
-	fill-opacity: 1;
-	stroke: #5e562f;
-	stroke-width: 0.24506418;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5125 {
-	fill: none;
-	stroke: #243253;
-	stroke-width: 0.40000001;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/main_tab.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/main_tab.css
deleted file mode 100644
index f8faf7b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/main_tab.css
+++ /dev/null
@@ -1,335 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4931 {
-  stop-color: #e8f8f8;
-  stop-opacity: 1; }
-
-#stop4933 {
-  stop-color: #f0f8f8;
-  stop-opacity: 1; }
-
-#stop4943 {
-  stop-color: #a8b8d0;
-  stop-opacity: 1; }
-
-#stop4946 {
-  stop-color: #8898c0;
-  stop-opacity: 1; }
-
-#stop4936 {
-  stop-color: #a8b8d0;
-  stop-opacity: 1; }
-
-#stop4938 {
-  stop-color: #8898c0;
-  stop-opacity: 1; }
-
-#stop4919 {
-  stop-color: #a8b8d0;
-  stop-opacity: 1; }
-
-#stop4923 {
-  stop-color: #98a8c8;
-  stop-opacity: 1; }
-
-#stop5107 {
-  stop-color: #4068a0;
-  stop-opacity: 1; }
-
-#stop5109 {
-  stop-color: #295189;
-  stop-opacity: 1; }
-
-#stop5065 {
-  stop-color: #4f9cd2;
-  stop-opacity: 1; }
-
-#stop5067 {
-  stop-color: #295189;
-  stop-opacity: 1; }
-
-#stop5041 {
-  stop-color: #4898d0;
-  stop-opacity: 1; }
-
-#stop5043 {
-  stop-color: #80b8e0;
-  stop-opacity: 1; }
-
-#stop5035 {
-  stop-color: #d0f0f8;
-  stop-opacity: 1; }
-
-#stop5037 {
-  stop-color: #d0f0f8;
-  stop-opacity: 1; }
-
-#stop4927 {
-  stop-color: #285088;
-  stop-opacity: 1; }
-
-#stop4929 {
-  stop-color: #4068a0;
-  stop-opacity: 1; }
-
-#stop4918 {
-  stop-color: #4898d0;
-  stop-opacity: 1; }
-
-#stop4921 {
-  stop-color: #90c0e0;
-  stop-opacity: 1; }
-
-#stop4847 {
-  stop-color: #96792f;
-  stop-opacity: 1; }
-
-#stop4849 {
-  stop-color: #615941;
-  stop-opacity: 1; }
-
-#stop4996-5-4 {
-  stop-color: #c2ecf6;
-  stop-opacity: 1; }
-
-#stop4998-5-0 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4912-8-8 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4914-8-8 {
-  stop-color: #c3ebf5;
-  stop-opacity: 1; }
-
-#stop4912-8-8-4 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4914-8-8-0 {
-  stop-color: #b1e6f3;
-  stop-opacity: 1; }
-
-#stop4996-5-4-8 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4998-5-0-8 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4918-7 {
-  stop-color: #4898d0;
-  stop-opacity: 1; }
-
-#stop4921-0 {
-  stop-color: #90c0e0;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect3997-9-1-1-5 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5069);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#rect3997-9-1 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4852);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#rect3997-9-1-1 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4935);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#rect4853-82-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5062-9);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect4853-82-0 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4975-2-1);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect4853-82-7-2 {
-  opacity: 0.25;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4885);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect4853-82-0-4 {
-  opacity: 0.25;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4975-2-1-9);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path4914-9 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5002);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5004);
-  stroke-width: 1px;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path4914 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4923);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4931);
-  stroke-width: 1px;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#path4914-0 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4952);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect3997-9-1-1-5-6 {
-  font-size: medium;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  line-height: normal;
-  letter-spacing: normal;
-  word-spacing: normal;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  text-anchor: start;
-  baseline-shift: baseline;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5086);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 1;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  font-family: Sans;
-  inkscape-font-specification: Sans; }
-
-#rect4142 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4926);
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect4144 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4929);
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect4146 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4932);
-  fill-opacity: 1;
-  stroke: none; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/main_tab.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/main_tab.scss
deleted file mode 100644
index fd3d14d..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/main_tab.scss
+++ /dev/null
@@ -1,374 +0,0 @@
-@import "gotham";
-
-#stop4931 {
-	stop-color: #e8f8f8;
-	stop-opacity: 1;
-}
-
-#stop4933 {
-	stop-color: #f0f8f8;
-	stop-opacity: 1;
-}
-
-#stop4943 {
-	stop-color: #a8b8d0;
-	stop-opacity: 1;
-}
-
-#stop4946 {
-	stop-color: #8898c0;
-	stop-opacity: 1;
-}
-
-#stop4936 {
-	stop-color: #a8b8d0;
-	stop-opacity: 1;
-}
-
-#stop4938 {
-	stop-color: #8898c0;
-	stop-opacity: 1;
-}
-
-#stop4919 {
-	stop-color: #a8b8d0;
-	stop-opacity: 1;
-}
-
-#stop4923 {
-	stop-color: #98a8c8;
-	stop-opacity: 1;
-}
-
-#stop5107 {
-	stop-color: #4068a0;
-	stop-opacity: 1;
-}
-
-#stop5109 {
-	stop-color: #295189;
-	stop-opacity: 1;
-}
-
-#stop5065 {
-	stop-color: #4f9cd2;
-	stop-opacity: 1;
-}
-
-#stop5067 {
-	stop-color: #295189;
-	stop-opacity: 1;
-}
-
-#stop5041 {
-	stop-color: #4898d0;
-	stop-opacity: 1;
-}
-
-#stop5043 {
-	stop-color: #80b8e0;
-	stop-opacity: 1;
-}
-
-#stop5035 {
-	stop-color: #d0f0f8;
-	stop-opacity: 1;
-}
-
-#stop5037 {
-	stop-color: #d0f0f8;
-	stop-opacity: 1;
-}
-
-#stop4927 {
-	stop-color: #285088;
-	stop-opacity: 1;
-}
-
-#stop4929 {
-	stop-color: #4068a0;
-	stop-opacity: 1;
-}
-
-#stop4918 {
-	stop-color: #4898d0;
-	stop-opacity: 1;
-}
-
-#stop4921 {
-	stop-color: #90c0e0;
-	stop-opacity: 1;
-}
-
-#stop4847 {
-	stop-color: #96792f;
-	stop-opacity: 1;
-}
-
-#stop4849 {
-	stop-color: #615941;
-	stop-opacity: 1;
-}
-
-#stop4996-5-4 {
-	stop-color: #c2ecf6;
-	stop-opacity: 1;
-}
-
-#stop4998-5-0 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4912-8-8 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4914-8-8 {
-	stop-color: #c3ebf5;
-	stop-opacity: 1;
-}
-
-#stop4912-8-8-4 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4914-8-8-0 {
-	stop-color: #b1e6f3;
-	stop-opacity: 1;
-}
-
-#stop4996-5-4-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4998-5-0-8 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4918-7 {
-	stop-color: #4898d0;
-	stop-opacity: 1;
-}
-
-#stop4921-0 {
-	stop-color: #90c0e0;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect3997-9-1-1-5 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5069);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#rect3997-9-1 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4852);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#rect3997-9-1-1 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4935);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#rect4853-82-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5062-9);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect4853-82-0 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4975-2-1);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect4853-82-7-2 {
-	opacity: 0.25;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4885);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect4853-82-0-4 {
-	opacity: 0.25;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4975-2-1-9);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path4914-9 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5002);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5004);
-	stroke-width: 1px;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path4914 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4923);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4931);
-	stroke-width: 1px;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#path4914-0 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4952);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect3997-9-1-1-5-6 {
-	font-size: medium;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	line-height: normal;
-	letter-spacing: normal;
-	word-spacing: normal;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	text-anchor: start;
-	baseline-shift: baseline;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient5086);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 1;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	font-family: Sans;
-	inkscape-font-specification: Sans;
-}
-
-#rect4142 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4926);
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect4144 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4929);
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect4146 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//main_tab.svg#linearGradient4932);
-	fill-opacity: 1;
-	stroke: none;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/new_ant_project.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/new_ant_project.css
deleted file mode 100644
index b8c2cce..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/new_ant_project.css
+++ /dev/null
@@ -1,422 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5330-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5332-8 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9 {
-  stop-color: #131313;
-  stop-opacity: 1; }
-
-#stop5213-4 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5070-8-0 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop5072-3-6 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4530-0-5-0-5 {
-  stop-color: #e0c576;
-  stop-opacity: 1; }
-
-#stop4532-7-9-3-3 {
-  stop-color: #9e7916;
-  stop-opacity: 1; }
-
-#stop6283-0-2-2-1-2-0-1 {
-  stop-color: #f7f9fb;
-  stop-opacity: 1; }
-
-#stop6285-5-0-9-7-6-9-9 {
-  stop-color: #ffd680;
-  stop-opacity: 1; }
-
-#stop3846 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-7 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-9 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-6 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3846-9 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3848-7 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3850-0 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3862-9 {
-  stop-color: #424242;
-  stop-opacity: 1; }
-
-#stop3864-3 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop5330-9-7-4 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3842-1 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop5332-8-9-4 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop5211-9-5-0 {
-  stop-color: #4c4c4c;
-  stop-opacity: 1; }
-
-#stop5213-4-6-1 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#stop3854-8 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop3856-8 {
-  stop-color: #dddddd;
-  stop-opacity: 1; }
-
-#stop3858-6 {
-  stop-color: #464646;
-  stop-opacity: 1; }
-
-#stop3868-7 {
-  stop-color: #717188;
-  stop-opacity: 1; }
-
-#stop3870-0 {
-  stop-color: #6b6b6b;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g5354 {
-  display: inline; }
-
-#g5354-1 {
-  display: inline; }
-
-#path5232-7 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#rect5291-2 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path3990 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#rect5291-0-9 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5232-0-8 {
-  fill: #424242;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path3990-6 {
-  fill: none;
-  stroke: #424242;
-  stroke-width: 0.98245722px;
-  stroke-linecap: butt;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#rect4812 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path5160-5 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient5366-0-3-9);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5368-1-6-1);
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path5160-4-0 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient5370-9-9-0);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5372-5-5-3);
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-8 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-18 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1 {
-  fill: #717188;
-  fill-opacity: 1;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-1-9 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.73476011;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-3 {
-  fill: none;
-  stroke: #b9b9bc;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-4-2 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.74850893;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-30 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient5374-4-7-6);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5376-4-5-0);
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-6 {
-  fill: none;
-  stroke: #717188;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-5 {
-  fill: none;
-  stroke: #b8b8b8;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5160-2-3-6 {
-  fill: none;
-  stroke: #888888;
-  stroke-width: 0.76813984;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#g6432 {
-  display: inline; }
-
-#path5581-1-1 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient6323-7);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-8 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5084-3-3);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-7 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5086-8-0);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-6 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5082-1-0);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-1 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5078-8-2);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-89 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5076-5-2);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-2 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5074-2-1);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path5581-1-1-79 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5088-1-4);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#g4514 {
-  display: inline; }
-
-#rect3910 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient3091-1-9-6);
-  fill-opacity: 1;
-  stroke: #a27d18;
-  stroke-width: 1.03243756;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path5581-5-5 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient3093-5-2-7);
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/new_ant_project.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/new_ant_project.scss
deleted file mode 100644
index 28f5305..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/new_ant_project.scss
+++ /dev/null
@@ -1,490 +0,0 @@
-@import "gotham";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5070-8-0 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5072-3-6 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4530-0-5-0-5 {
-	stop-color: #e0c576;
-	stop-opacity: 1;
-}
-
-#stop4532-7-9-3-3 {
-	stop-color: #9e7916;
-	stop-opacity: 1;
-}
-
-#stop6283-0-2-2-1-2-0-1 {
-	stop-color: #f7f9fb;
-	stop-opacity: 1;
-}
-
-#stop6285-5-0-9-7-6-9-9 {
-	stop-color: #ffd680;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-6 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-9 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-3 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-7-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-1 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-9-4 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-0 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-6-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-8 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-6 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-7 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-0 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#g5354-1 {
-	display: inline;
-}
-
-#path5232-7 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#rect5291-2 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0-9 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0-8 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160-5 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient5366-0-3-9);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5368-1-6-1);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4-0 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient5370-9-9-0);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5372-5-5-3);
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-30 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient5374-4-7-6);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5376-4-5-0);
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#g6432 {
-	display: inline;
-}
-
-#path5581-1-1 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient6323-7);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-8 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5084-3-3);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-7 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5086-8-0);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-6 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5082-1-0);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-1 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5078-8-2);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-89 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5076-5-2);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5074-2-1);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5581-1-1-79 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient5088-1-4);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#g4514 {
-	display: inline;
-}
-
-#rect3910 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#radialGradient3091-1-9-6);
-	fill-opacity: 1;
-	stroke: #a27d18;
-	stroke-width: 1.03243756;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5581-5-5 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//new_ant_project.svg#linearGradient3093-5-2-7);
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/prop_ps.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/prop_ps.css
deleted file mode 100644
index dc4114d..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/prop_ps.css
+++ /dev/null
@@ -1,215 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop7493 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7495 {
-  stop-color: #a0b0cc;
-  stop-opacity: 1; }
-
-#stop7256 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#stop7256-5 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258-7 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#stop7256-0 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258-0 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#stop7256-5-4 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop7258-7-4 {
-  stop-color: #95a3ba;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect7499 {
-  color: #000000;
-  fill: #ffffff;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-4-4 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7362);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-4 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7277);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7489 {
-  opacity: 0.67558528;
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7497);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7260);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-7 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7328);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7244-4-4-8 {
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2-4 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2-4-3 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect7415-2-4-3-9 {
-  opacity: 0.3487395;
-  color: #000000;
-  fill: #5b6c89;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/prop_ps.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/prop_ps.scss
deleted file mode 100644
index fcb7c52..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/prop_ps.scss
+++ /dev/null
@@ -1,230 +0,0 @@
-@import "gotham";
-
-#stop7493 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7495 {
-	stop-color: #a0b0cc;
-	stop-opacity: 1;
-}
-
-#stop7256 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#stop7256-5 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258-7 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#stop7256-0 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258-0 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#stop7256-5-4 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop7258-7-4 {
-	stop-color: #95a3ba;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect7499 {
-	color: #000000;
-	fill: #ffffff;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-4-4 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7362);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-4 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7277);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7489 {
-	opacity: 0.67558528;
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7497);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7260);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-7 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//prop_ps.svg#linearGradient7328);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7244-4-4-8 {
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2-4 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2-4-3 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect7415-2-4-3-9 {
-	opacity: 0.3487395;
-	color: #000000;
-	fill: #5b6c89;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/property_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/property_obj.css
deleted file mode 100644
index b5908c4..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/property_obj.css
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop3904 {
-  stop-color: #5b6c89;
-  stop-opacity: 1; }
-
-#stop3906 {
-  stop-color: #8392a8;
-  stop-opacity: 1; }
-
-#stop3878 {
-  stop-color: #a4b0c0;
-  stop-opacity: 1; }
-
-#stop3880 {
-  stop-color: #b7c2d0;
-  stop-opacity: 1; }
-
-#stop6801 {
-  stop-color: #a6bacf;
-  stop-opacity: 1; }
-
-#stop6803 {
-  stop-color: #798da2;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#rect3031 {
-  fill: #ffffff;
-  stroke: #47698f;
-  stroke-width: 1;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#path3812-1 {
-  fill: #b7c2d0;
-  fill-opacity: 1;
-  stroke: #b7c2d0;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path3812-1-7 {
-  fill: #b7c2d0;
-  fill-opacity: 1;
-  stroke: #b7c2d0;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path3812-1-7-5 {
-  fill: #b7c2d0;
-  fill-opacity: 1;
-  stroke: #b7c2d0;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path3812 {
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//property_obj.svg#linearGradient3882);
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1; }
-
-#rect3031-0 {
-  fill: none;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//property_obj.svg#linearGradient3908);
-  stroke-width: 1;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
-
-#path3910-0 {
-  fill: none;
-  stroke: #81a3c9;
-  stroke-width: 1px;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path3910 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-opacity: 1; }
-
-#path3910-0-3 {
-  fill: none;
-  stroke: #81a3c9;
-  stroke-width: 1px;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path3910-02 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/property_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/property_obj.scss
deleted file mode 100644
index d71eac3..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/property_obj.scss
+++ /dev/null
@@ -1,140 +0,0 @@
-@import "gotham";
-
-#stop3904 {
-	stop-color: #5b6c89;
-	stop-opacity: 1;
-}
-
-#stop3906 {
-	stop-color: #8392a8;
-	stop-opacity: 1;
-}
-
-#stop3878 {
-	stop-color: #a4b0c0;
-	stop-opacity: 1;
-}
-
-#stop3880 {
-	stop-color: #b7c2d0;
-	stop-opacity: 1;
-}
-
-#stop6801 {
-	stop-color: #a6bacf;
-	stop-opacity: 1;
-}
-
-#stop6803 {
-	stop-color: #798da2;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#rect3031 {
-	fill: #ffffff;
-	stroke: #47698f;
-	stroke-width: 1;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path3812-1 {
-	fill: #b7c2d0;
-	fill-opacity: 1;
-	stroke: #b7c2d0;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path3812-1-7 {
-	fill: #b7c2d0;
-	fill-opacity: 1;
-	stroke: #b7c2d0;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path3812-1-7-5 {
-	fill: #b7c2d0;
-	fill-opacity: 1;
-	stroke: #b7c2d0;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path3812 {
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//property_obj.svg#linearGradient3882);
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-}
-
-#rect3031-0 {
-	fill: none;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//property_obj.svg#linearGradient3908);
-	stroke-width: 1;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path3910-0 {
-	fill: none;
-	stroke: #81a3c9;
-	stroke-width: 1px;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path3910 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#path3910-0-3 {
-	fill: none;
-	stroke: #81a3c9;
-	stroke-width: 1px;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path3910-02 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: round;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetinternal_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetinternal_obj.css
deleted file mode 100644
index a55716e..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetinternal_obj.css
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#path6578 {
-  color: #000000;
-  fill: none;
-  stroke: #3d9465;
-  stroke-width: 1.39648581;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path6578-2 {
-  color: #000000;
-  fill: none;
-  stroke: #3d9465;
-  stroke-width: 2.57762098;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path6578-2-0 {
-  color: #000000;
-  fill: #20680c;
-  fill-opacity: 1;
-  stroke: #20680c;
-  stroke-width: 2.03037214;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetinternal_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetinternal_obj.scss
deleted file mode 100644
index b58b721..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetinternal_obj.scss
+++ /dev/null
@@ -1,52 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#path6578 {
-	color: #000000;
-	fill: none;
-	stroke: #3d9465;
-	stroke-width: 1.39648581;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path6578-2 {
-	color: #000000;
-	fill: none;
-	stroke: #3d9465;
-	stroke-width: 2.57762098;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path6578-2-0 {
-	color: #000000;
-	fill: #20680c;
-	fill-opacity: 1;
-	stroke: #20680c;
-	stroke-width: 2.03037214;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetpublic_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetpublic_obj.css
deleted file mode 100644
index 1ac3ec6..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetpublic_obj.css
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#path6578 {
-  color: #000000;
-  fill: #5fcf92;
-  stroke: #3d9465;
-  stroke-width: 1.39648580999999994;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  fill-opacity: 1; }
-
-#path6578-2 {
-  color: #000000;
-  fill: none;
-  stroke: #3d9465;
-  stroke-width: 2.57762098;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#path6578-2-0 {
-  color: #000000;
-  fill: #20680c;
-  fill-opacity: 1;
-  stroke: #20680c;
-  stroke-width: 2.03037214;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetpublic_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetpublic_obj.scss
deleted file mode 100644
index aa93fc9..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/targetpublic_obj.scss
+++ /dev/null
@@ -1,53 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#path6578 {
-	color: #000000;
-	fill: #5fcf92;
-	stroke: #3d9465;
-	stroke-width: 1.39648580999999994;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	fill-opacity: 1;
-}
-
-#path6578-2 {
-	color: #000000;
-	fill: none;
-	stroke: #3d9465;
-	stroke-width: 2.57762098;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#path6578-2-0 {
-	color: #000000;
-	fill: #20680c;
-	fill-opacity: 1;
-	stroke: #20680c;
-	stroke-width: 2.03037214;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/task_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/task_obj.css
deleted file mode 100644
index d5d5bb5..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/task_obj.css
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#g6722-9-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709281999999996px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#g6722-9-8-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8-5 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709282px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/task_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/task_obj.scss
deleted file mode 100644
index c8aa98c..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/task_obj.scss
+++ /dev/null
@@ -1,58 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#g6722-9-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709281999999996px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#g6722-9-8-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8-5 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709282px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/taskdef_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/taskdef_obj.css
deleted file mode 100644
index 596a07c..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/taskdef_obj.css
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4924 {
-  stop-color: #b08b21;
-  stop-opacity: 1; }
-
-#stop4926 {
-  stop-color: #eee9da;
-  stop-opacity: 1; }
-
-#stop4907 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4910 {
-  stop-color: #b6cce1;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g6722-9-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709281999999996px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#g6722-9-8-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8-5 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709282px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path4116 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//taskdef_obj.svg#radialGradient4920);
-  fill-opacity: 1;
-  stroke: #47698f;
-  stroke-width: 0.44999999;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none; }
-
-#rect4914 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//taskdef_obj.svg#linearGradient4929);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.40000001;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/taskdef_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/taskdef_obj.scss
deleted file mode 100644
index 22f0b7c..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/taskdef_obj.scss
+++ /dev/null
@@ -1,104 +0,0 @@
-@import "gotham";
-
-#stop4924 {
-	stop-color: #b08b21;
-	stop-opacity: 1;
-}
-
-#stop4926 {
-	stop-color: #eee9da;
-	stop-opacity: 1;
-}
-
-#stop4907 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4910 {
-	stop-color: #b6cce1;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g6722-9-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709281999999996px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#g6722-9-8-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8-5 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709282px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path4116 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//taskdef_obj.svg#radialGradient4920);
-	fill-opacity: 1;
-	stroke: #47698f;
-	stroke-width: 0.44999999;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#rect4914 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//taskdef_obj.svg#linearGradient4929);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.40000001;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/template_obj.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/template_obj.css
deleted file mode 100644
index f840b99..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/template_obj.css
+++ /dev/null
@@ -1,172 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop4974 {
-  stop-color: #c7e3e7;
-  stop-opacity: 1; }
-
-#stop4976 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop4896 {
-  stop-color: #7e707a;
-  stop-opacity: 1; }
-
-#stop4898 {
-  stop-color: #8a5e8d;
-  stop-opacity: 1; }
-
-#stop4974-7 {
-  stop-color: #85c2cb;
-  stop-opacity: 1; }
-
-#stop4976-1 {
-  stop-color: #ffffff;
-  stop-opacity: 0; }
-
-#stop4974-6-9 {
-  stop-color: #daedef;
-  stop-opacity: 1; }
-
-#stop4976-2-4 {
-  stop-color: #ffffff;
-  stop-opacity: 1; }
-
-#stop6801-4-0 {
-  stop-color: #a6bacf;
-  stop-opacity: 1; }
-
-#stop6803-5-7 {
-  stop-color: #798da2;
-  stop-opacity: 1; }
-
-#stop6801-4-0-5 {
-  stop-color: #a6bacf;
-  stop-opacity: 1; }
-
-#stop6803-5-7-2 {
-  stop-color: #798da2;
-  stop-opacity: 1; }
-
-#stop6801-4-0-1-4 {
-  stop-color: #a6bacf;
-  stop-opacity: 1; }
-
-#stop6803-5-7-1-4 {
-  stop-color: #798da2;
-  stop-opacity: 1; }
-
-#stop6801-4-0-1-3-2 {
-  stop-color: #a6bacf;
-  stop-opacity: 1; }
-
-#stop6803-5-7-1-5-1 {
-  stop-color: #798da2;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g4087 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4978);
-  fill-opacity: 1; }
-
-#rect6795 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient5417);
-  fill-opacity: 1;
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient5419);
-  stroke-width: 0.63910681;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect6891 {
-  opacity: 0.77310947;
-  color: #000000;
-  fill: #fef17a;
-  fill-opacity: 1;
-  stroke: #c89840;
-  stroke-width: 1.39999998;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  stroke-dashoffset: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect4892 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4900);
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#g6750 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient5138-5);
-  fill-opacity: 1;
-  display: inline; }
-
-#rect6891-5-7-3-9 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4969);
-  fill-opacity: 1;
-  stroke: none;
-  stroke-width: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect6891-5-7-3-9-7 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4891-29);
-  fill-opacity: 1;
-  stroke: none;
-  stroke-width: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
-
-#rect6891-5-7-3-9-7-4 {
-  color: #000000;
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4925-6);
-  fill-opacity: 1;
-  stroke: none;
-  stroke-width: 0;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/template_obj.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/template_obj.scss
deleted file mode 100644
index e85029a..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/template_obj.scss
+++ /dev/null
@@ -1,189 +0,0 @@
-@import "gotham";
-
-#stop4974 {
-	stop-color: #c7e3e7;
-	stop-opacity: 1;
-}
-
-#stop4976 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop4896 {
-	stop-color: #7e707a;
-	stop-opacity: 1;
-}
-
-#stop4898 {
-	stop-color: #8a5e8d;
-	stop-opacity: 1;
-}
-
-#stop4974-7 {
-	stop-color: #85c2cb;
-	stop-opacity: 1;
-}
-
-#stop4976-1 {
-	stop-color: #ffffff;
-	stop-opacity: 0;
-}
-
-#stop4974-6-9 {
-	stop-color: #daedef;
-	stop-opacity: 1;
-}
-
-#stop4976-2-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop6801-4-0 {
-	stop-color: #a6bacf;
-	stop-opacity: 1;
-}
-
-#stop6803-5-7 {
-	stop-color: #798da2;
-	stop-opacity: 1;
-}
-
-#stop6801-4-0-5 {
-	stop-color: #a6bacf;
-	stop-opacity: 1;
-}
-
-#stop6803-5-7-2 {
-	stop-color: #798da2;
-	stop-opacity: 1;
-}
-
-#stop6801-4-0-1-4 {
-	stop-color: #a6bacf;
-	stop-opacity: 1;
-}
-
-#stop6803-5-7-1-4 {
-	stop-color: #798da2;
-	stop-opacity: 1;
-}
-
-#stop6801-4-0-1-3-2 {
-	stop-color: #a6bacf;
-	stop-opacity: 1;
-}
-
-#stop6803-5-7-1-5-1 {
-	stop-color: #798da2;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g4087 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4978);
-	fill-opacity: 1;
-}
-
-#rect6795 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient5417);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient5419);
-	stroke-width: 0.63910681;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect6891 {
-	opacity: 0.77310947;
-	color: #000000;
-	fill: #fef17a;
-	fill-opacity: 1;
-	stroke: #c89840;
-	stroke-width: 1.39999998;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	stroke-dashoffset: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect4892 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4900);
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#g6750 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient5138-5);
-	fill-opacity: 1;
-	display: inline;
-}
-
-#rect6891-5-7-3-9 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4969);
-	fill-opacity: 1;
-	stroke: none;
-	stroke-width: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect6891-5-7-3-9-7 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4891-29);
-	fill-opacity: 1;
-	stroke: none;
-	stroke-width: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
-#rect6891-5-7-3-9-7-4 {
-	color: #000000;
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/obj16//template_obj.svg#linearGradient4925-6);
-	fill-opacity: 1;
-	stroke: none;
-	stroke-width: 0;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/type.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/type.css
deleted file mode 100644
index 193a3c1..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/type.css
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#layer1 {
-  display: inline; }
-
-#g6722-9-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709281999999996px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#g6722-9-8-8 {
-  stroke: #47698f;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-4-8-8-5 {
-  fill: none;
-  stroke: #7795b6;
-  stroke-width: 0.95709282px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path6702-1-1-1 {
-  fill: none;
-  stroke: #47698f;
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  display: inline; }
-
-#path7118 {
-  fill: #3979bd;
-  fill-opacity: 1;
-  stroke: #3979bd;
-  stroke-opacity: 1;
-  stroke-width: 0.5;
-  stroke-miterlimit: 4;
-  stroke-dasharray: none; }
-
-#rect7138 {
-  color: #000000;
-  fill: #e06b5e;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: #e06b5e;
-  stroke-width: 0.5;
-  marker: none;
-  visibility: visible;
-  display: inline;
-  overflow: visible;
-  enable-background: accumulate;
-  stroke-opacity: 1;
-  stroke-miterlimit: 4;
-  stroke-dasharray: none; }
-
-#path7118-2 {
-  fill: #3979bd;
-  fill-opacity: 1;
-  stroke: #3979bd;
-  stroke-width: 0.5;
-  stroke-miterlimit: 4;
-  stroke-opacity: 1;
-  stroke-dasharray: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/type.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/type.scss
deleted file mode 100644
index 50b06a1..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/obj16/type.scss
+++ /dev/null
@@ -1,96 +0,0 @@
-@import "gotham";
-
-#layer1 {
-	display: inline;
-}
-
-#g6722-9-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709281999999996px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#g6722-9-8-8 {
-	stroke: #47698f;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-4-8-8-5 {
-	fill: none;
-	stroke: #7795b6;
-	stroke-width: 0.95709282px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path6702-1-1-1 {
-	fill: none;
-	stroke: #47698f;
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#path7118 {
-	fill: #3979bd;
-	fill-opacity: 1;
-	stroke: #3979bd;
-	stroke-opacity: 1;
-	stroke-width: 0.5;
-	stroke-miterlimit: 4;
-	stroke-dasharray: none;
-}
-
-#rect7138 {
-	color: #000000;
-	fill: #e06b5e;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: #e06b5e;
-	stroke-width: 0.5;
-	marker: none;
-	visibility: visible;
-	display: inline;
-	overflow: visible;
-	enable-background: accumulate;
-	stroke-opacity: 1;
-	stroke-miterlimit: 4;
-	stroke-dasharray: none;
-}
-
-#path7118-2 {
-	fill: #3979bd;
-	fill-opacity: 1;
-	stroke: #3979bd;
-	stroke-width: 0.5;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/error_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/error_co.css
deleted file mode 100644
index 8b4ce42..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/error_co.css
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#rect4244 {
-  fill: #d8424f;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#path4187-6 {
-  color: #000000;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-  font-stretch: normal;
-  font-size: 7.68999243px;
-  line-height: 125%;
-  font-family: Sans;
-  text-indent: 0;
-  text-align: start;
-  text-decoration: none;
-  text-decoration-line: none;
-  letter-spacing: 0px;
-  word-spacing: 0px;
-  text-transform: none;
-  direction: ltr;
-  block-progression: tb;
-  writing-mode: lr-tb;
-  baseline-shift: baseline;
-  text-anchor: start;
-  display: inline;
-  overflow: visible;
-  visibility: visible;
-  fill: #ffffff;
-  fill-opacity: 1;
-  fill-rule: nonzero;
-  stroke: none;
-  stroke-width: 0.27519909;
-  marker: none;
-  enable-background: accumulate; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/error_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/error_co.scss
deleted file mode 100644
index 6d04020..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/error_co.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-@import "gotham";
-
-#rect4244 {
-	fill: #d8424f;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path4187-6 {
-	color: #000000;
-	font-style: normal;
-	font-variant: normal;
-	font-weight: normal;
-	font-stretch: normal;
-	font-size: 7.68999243px;
-	line-height: 125%;
-	font-family: Sans;
-	text-indent: 0;
-	text-align: start;
-	text-decoration: none;
-	text-decoration-line: none;
-	letter-spacing: 0px;
-	word-spacing: 0px;
-	text-transform: none;
-	direction: ltr;
-	block-progression: tb;
-	writing-mode: lr-tb;
-	baseline-shift: baseline;
-	text-anchor: start;
-	display: inline;
-	overflow: visible;
-	visibility: visible;
-	fill: #ffffff;
-	fill-opacity: 1;
-	fill-rule: nonzero;
-	stroke: none;
-	stroke-width: 0.27519909;
-	marker: none;
-	enable-background: accumulate;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/import_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/import_co.css
deleted file mode 100644
index 111a8dd..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/import_co.css
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5006 {
-  stop-color: #0d5c9a;
-  stop-opacity: 1; }
-
-#stop5008 {
-  stop-color: #4077a7;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#rect4233-9 {
-  fill: #87a2ce;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
-
-#rect4233 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/ovr16//import_co.svg#linearGradient5010);
-  fill-opacity: 1;
-  stroke: none; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/import_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/import_co.scss
deleted file mode 100644
index 2277ba9..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/import_co.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-@import "gotham";
-
-#stop5006 {
-	stop-color: #0d5c9a;
-	stop-opacity: 1;
-}
-
-#stop5008 {
-	stop-color: #4077a7;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#rect4233-9 {
-	fill: #87a2ce;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#rect4233 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/ovr16//import_co.svg#linearGradient5010);
-	fill-opacity: 1;
-	stroke: none;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/warning_co.css b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/warning_co.css
deleted file mode 100644
index a170774..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/warning_co.css
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * gotham.scss test theme for experimenting with icon themes
- */
-/** Cross theme styles */
-/*
- * Global.scss provides styles and configuration
- * all themes.
- *
- */
-/** Global styles and values */
-/** styles and values */
-#stop5093 {
-  stop-color: #c6852e;
-  stop-opacity: 1; }
-
-#stop5095 {
-  stop-color: #e1a555;
-  stop-opacity: 1; }
-
-#stop5083 {
-  stop-color: #ffe296;
-  stop-opacity: 1; }
-
-#stop5089 {
-  stop-color: #f8d880;
-  stop-opacity: 1; }
-
-#stop5085 {
-  stop-color: #fffcd3;
-  stop-opacity: 1; }
-
-#layer1 {
-  display: inline; }
-
-#g8472 {
-  display: inline; }
-
-#path4292 {
-  fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/ovr16//warning_co.svg#linearGradient5087);
-  stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/ovr16//warning_co.svg#linearGradient5097);
-  stroke-width: 1px;
-  stroke-linecap: butt;
-  stroke-linejoin: miter;
-  stroke-opacity: 1;
-  fill-opacity: 1; }
-
-#path4253 {
-  fill: #502800;
-  fill-opacity: 1;
-  stroke: none; }
-
-#path4253-7 {
-  fill: #502800;
-  fill-opacity: 1;
-  stroke: none;
-  display: inline; }
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/warning_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/warning_co.scss
deleted file mode 100644
index e96551b..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/gotham/full/ovr16/warning_co.scss
+++ /dev/null
@@ -1,58 +0,0 @@
-@import "gotham";
-
-#stop5093 {
-	stop-color: #c6852e;
-	stop-opacity: 1;
-}
-
-#stop5095 {
-	stop-color: #e1a555;
-	stop-opacity: 1;
-}
-
-#stop5083 {
-	stop-color: #ffe296;
-	stop-opacity: 1;
-}
-
-#stop5089 {
-	stop-color: #f8d880;
-	stop-opacity: 1;
-}
-
-#stop5085 {
-	stop-color: #fffcd3;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g8472 {
-	display: inline;
-}
-
-#path4292 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/ovr16//warning_co.svg#linearGradient5087);
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/ovr16//warning_co.svg#linearGradient5097);
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	fill-opacity: 1;
-}
-
-#path4253 {
-	fill: #502800;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path4253-7 {
-	fill: #502800;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/add_co.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/add_co.scss
deleted file mode 100644
index 5585981..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/add_co.scss
+++ /dev/null
@@ -1,594 +0,0 @@
-@import "stock";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #5c5c5c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #aeaeae;
-	stop-opacity: 1;
-}
-
-#stop5593-0 {
-	stop-color: #e0e566;
-	stop-opacity: 1;
-}
-
-#stop5595-5 {
-	stop-color: #b0b456;
-	stop-opacity: 1;
-}
-
-#stop5585-3 {
-	stop-color: #426e4a;
-	stop-opacity: 1;
-}
-
-#stop5587-3 {
-	stop-color: #669f71;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3088 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3090 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3095 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3097 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3102 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3104 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3109 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3111 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2-6 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3114 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3116 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3121 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3123 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3128 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3130 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3135 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3137 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-1 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-8 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-0 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-5 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-8 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-1-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-8-6 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-0-3 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-4 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-3 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-3 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-4-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-5-1 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-9-4 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-8-2 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-9-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-1-3-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-2-9 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-3-7 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-8-6-1 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-0-3-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-9-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-4-7 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-3-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-3-6 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-2-9 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5366-0-1-2-7);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5368-1-7-3-8);
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path5160-4 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5370-9-0-9-0);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5372-5-0-9-4);
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-3 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-8 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-18 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-1-9 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.73476011;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-3-34 {
-	fill: none;
-	stroke: #b9b9bc;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-4-2 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.74850893;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#radialGradient5374-4-8-3-4);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5376-4-8-9-4);
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-6 {
-	fill: none;
-	stroke: #717188;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-5 {
-	fill: none;
-	stroke: #b8b8b8;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5160-2-3-6 {
-	fill: none;
-	stroke: #888888;
-	stroke-width: 0.76813984;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-	display: inline;
-}
-
-#path5581 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5618);
-	fill-opacity: 1;
-	stroke: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//add_co.svg#linearGradient5620);
-	stroke-width: 1px;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-opacity: 1;
-	display: inline;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/alpha_mode.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/alpha_mode.scss
deleted file mode 100644
index 17e2d41..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/alpha_mode.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-@import "stock";
-
-#stop4791 {
-	stop-color: #4e8fbd;
-	stop-opacity: 1;
-}
-
-#stop4793 {
-	stop-color: #30495a;
-	stop-opacity: 1;
-}
-
-#stop4775 {
-	stop-color: #8e4694;
-	stop-opacity: 1;
-}
-
-#stop4777 {
-	stop-color: #bc7bc1;
-	stop-opacity: 1;
-}
-
-#stop4765 {
-	stop-color: #77a29d;
-	stop-opacity: 1;
-}
-
-#stop4767 {
-	stop-color: #1b867b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#path3986 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4795);
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path4758 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4769);
-	fill-opacity: 1;
-	stroke: #29776f;
-	stroke-width: 0.2;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
-#path4771 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//alpha_mode.svg#linearGradient4779);
-	fill-opacity: 1;
-	stroke: #711a78;
-	stroke-width: 0.21938443;
-	stroke-linecap: butt;
-	stroke-linejoin: miter;
-	stroke-miterlimit: 4;
-	stroke-opacity: 1;
-	stroke-dasharray: none;
-}
-
diff --git a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/ant_targets.scss b/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/ant_targets.scss
deleted file mode 100644
index eca77d2..0000000
--- a/org.eclipse.images/eclipse-css/org.eclipse.ant.ui/styles/stock/full/elcl16/ant_targets.scss
+++ /dev/null
@@ -1,514 +0,0 @@
-@import "stock";
-
-#stop5330-9 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9 {
-	stop-color: #5c5c5c;
-	stop-opacity: 1;
-}
-
-#stop5213-4 {
-	stop-color: #aeaeae;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2-6 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3260 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3262 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3267 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3269 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3274 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3276 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3281 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3283 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-9-1-5-4 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop5332-8-7-9-2-9 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-5-2-6-1 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop5213-4-5-8-4-4 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3115 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3117 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3122 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3124 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3129 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3131 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3136 {
-	stop-color: #131313;
-	stop-opacity: 1;
-}
-
-#stop3138 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-5 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-0 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-7 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3846-8 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3848-2 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3850-2 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3862-7 {
-	stop-color: #424242;
-	stop-opacity: 1;
-}
-
-#stop3864-2 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop5330-9-5-7 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3842-8 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop5332-8-5-8 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop5211-9-0-4 {
-	stop-color: #4c4c4c;
-	stop-opacity: 1;
-}
-
-#stop5213-4-7-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#stop3854-3 {
-	stop-color: #ffffff;
-	stop-opacity: 1;
-}
-
-#stop3856-3 {
-	stop-color: #dddddd;
-	stop-opacity: 1;
-}
-
-#stop3858-0 {
-	stop-color: #464646;
-	stop-opacity: 1;
-}
-
-#stop3868-5 {
-	stop-color: #717188;
-	stop-opacity: 1;
-}
-
-#stop3870-1 {
-	stop-color: #6b6b6b;
-	stop-opacity: 1;
-}
-
-#layer1 {
-	display: inline;
-}
-
-#g5354 {
-	display: inline;
-}
-
-#rect5291 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path3990 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-}
-
-#rect5291-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path5232-0 {
-	fill: #424242;
-	fill-opacity: 1;
-	stroke: none;
-	display: inline;
-}
-
-#path3990-6 {
-	fill: none;
-	stroke: #424242;
-	stroke-width: 0.98245722px;
-	stroke-linecap: butt;
-	stroke-linejoin: round;
-	stroke-opacity: 1;
-	display: inline;
-}
-
-#rect4812 {
-	fill: #717188;
-	fill-opacity: 1;
-	stroke: none;
-}
-
-#path5160 {
-	fill: url(../../../../../../eclipse-svg/org.eclipse.ant.ui/icons/full/elcl16//ant_targets.svg#radialGradient5366-0-3-5);