/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.jnode.apps.jpartition.swingview; import java.awt.Color; public interface Constants { // set of colors used by gParted public static final Color UNALLOCATED = new Color(169, 169, 169); public static final Color EXT2 = new Color(157, 184, 211); public static final Color EXT3 = new Color(117, 144, 174); public static final Color FAT16 = new Color(0, 255, 1); public static final Color FAT32 = new Color(23, 217, 24); public static final Color HFS = new Color(225, 182, 175); public static final Color HFS_PLUS = new Color(220, 223, 220); public static final Color JFS = new Color(224, 194, 156); public static final Color LINUX_SWAP = new Color(192, 102, 91); public static final Color NTFS = new Color(45, 240, 172); public static final Color REISER4 = new Color(137, 127, 162); public static final Color REISERFS = new Color(173, 168, 200); public static final Color UFS = new Color(220, 217, 210); public static final Color XFS = new Color(238, 214, 128); }