001/*
002 * Copyright (c) 2000 World Wide Web Consortium,
003 * (Massachusetts Institute of Technology, Institut National de
004 * Recherche en Informatique et en Automatique, Keio University). All
005 * Rights Reserved. This program is distributed under the W3C's Software
006 * Intellectual Property License. This program is distributed in the
007 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
008 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
009 * PURPOSE.
010 * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
011 */
012
013package org.w3c.dom.css;
014
015/**
016 *  The <code>RGBColor</code> interface is used to represent any RGB color 
017 * value. This interface reflects the values in the underlying style 
018 * property. Hence, modifications made to the <code>CSSPrimitiveValue</code> 
019 * objects modify the style property. 
020 * <p> A specified RGB color is not clipped (even if the number is outside the 
021 * range 0-255 or 0%-100%). A computed RGB color is clipped depending on the 
022 * device. 
023 * <p> Even if a style sheet can only contain an integer for a color value, 
024 * the internal storage of this integer is a float, and this can be used as 
025 * a float in the specified or the computed style. 
026 * <p> A color percentage value can always be converted to a number and vice 
027 * versa. 
028 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
029 * @since DOM Level 2
030 */
031public interface RGBColor {
032    /**
033     *  This attribute is used for the red value of the RGB color. 
034     */
035    public CSSPrimitiveValue getRed();
036
037    /**
038     *  This attribute is used for the green value of the RGB color. 
039     */
040    public CSSPrimitiveValue getGreen();
041
042    /**
043     *  This attribute is used for the blue value of the RGB color. 
044     */
045    public CSSPrimitiveValue getBlue();
046
047}