X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.g2d%2Fsrc%2Forg%2Fsimantics%2Fg2d%2Felementclass%2Fslider%2FSliderColorProfile.java;fp=bundles%2Forg.simantics.g2d%2Fsrc%2Forg%2Fsimantics%2Fg2d%2Felementclass%2Fslider%2FSliderColorProfile.java;h=5b39460adb464f375151f2bb7478e9701ee119b5;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.g2d/src/org/simantics/g2d/elementclass/slider/SliderColorProfile.java b/bundles/org.simantics.g2d/src/org/simantics/g2d/elementclass/slider/SliderColorProfile.java new file mode 100644 index 000000000..5b39460ad --- /dev/null +++ b/bundles/org.simantics.g2d/src/org/simantics/g2d/elementclass/slider/SliderColorProfile.java @@ -0,0 +1,46 @@ +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.g2d.elementclass.slider; + +import java.awt.Color; + +/** + * @author Toni Kalajainen + */ +public class SliderColorProfile { + + public static final SliderColorProfile DEFAULT = new SliderColorProfile(); + + public Color TRACK1 = new Color(150, 150, 150); + public Color TRACK2 = new Color(177, 177, 177); + public Color TRACK3 = new Color(196, 196, 196); + + public Color HANDLE1 = new Color(206, 206, 206); + public Color HANDLE2 = new Color( 92, 92, 92); + public Color HANDLE3 = new Color(255, 255, 255); + public Color HANDLE4 = new Color(230, 230, 230); + public Color HANDLE5 = new Color(206, 206, 206); + public Color HANDLE6 = new Color(153, 153, 153); + public Color HANDLE7 = new Color(206, 206, 206); + public Color HANDLE8 = new Color(255, 255, 255); + + public Color DISABLED_HANDLE1 = new Color(167, 167, 167); + public Color DISABLED_HANDLE2 = new Color(110, 110, 110); + public Color DISABLED_HANDLE3 = new Color(192, 192, 192); + public Color DISABLED_HANDLE4 = new Color(179, 179, 179); + public Color DISABLED_HANDLE5 = new Color(167, 167, 167); + public Color DISABLED_HANDLE6 = new Color(140, 140, 140); + public Color DISABLED_HANDLE7 = new Color(167, 167, 167); + public Color DISABLED_HANDLE8 = new Color(192, 192, 192); + + +}