Project

General

Profile

Download (2.19 KB) Statistics
| Branch: | Revision:

distorted-objectlib / src / main / java / org / distorted / objectlib / shape / ShapeColors.java @ 33ba467a

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2024 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is proprietary software licensed under an EULA which you should have received      //
7
// along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
8
///////////////////////////////////////////////////////////////////////////////////////////////////
9

    
10
package org.distorted.objectlib.shape;
11

    
12
///////////////////////////////////////////////////////////////////////////////////////////////////
13

    
14
public class ShapeColors
15
{
16
  public static final int COLOR_LPINK  = 0xffe191b4;
17
  public static final int COLOR_VIOLET = 0xff7700bb;
18
  public static final int COLOR_PURPLE = 0xff472258;
19
  public static final int COLOR_BURGUN = 0xff591218;
20
  public static final int COLOR_DPINK  = 0xffba365b;
21
  public static final int COLOR_YELLOW = 0xffffff00;
22
  public static final int COLOR_LGREEN = 0xff00bb00;
23
  public static final int COLOR_BLUE   = 0xff0000ff;
24
  public static final int COLOR_GREY   = 0xff727c7b;
25
  public static final int COLOR_ORANGE = 0xffff6200;
26
  public static final int COLOR_DGREEN = 0xff092d2b;
27
  public static final int COLOR_SELEDY = 0xff034d3e;
28
  public static final int COLOR_GREEN  = 0xff1a7516;
29
  public static final int COLOR_BLUEISH= 0xff58b6be;
30
  public static final int COLOR_SANDY  = 0xffd3c49b;
31
  public static final int COLOR_DBLUE  = 0xff0a1662;
32
  public static final int COLOR_RED    = 0xffaa0000;
33
  public static final int COLOR_DYELLO = 0xffe1b410;
34
  public static final int COLOR_BROWN  = 0xff902a2a;
35
  public static final int COLOR_LBLUE  = 0xff0157da;
36
  public static final int COLOR_BLACK  = 0xff050505;
37
  public static final int COLOR_DGREY  = 0xff222222;
38
  public static final int COLOR_LGREY  = 0xff555555;
39
  public static final int COLOR_WHITE  = 0xffffffff;
40
}
(1-1/7)