gloss-1.13.2.1: Painless 2D vector graphics, animations and simulations.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Graphics.Gloss.Data.Color

Description

Predefined and custom colors.

Synopsis

Color data type

data Color Source #

An abstract color value. We keep the type abstract so we can be sure that the components are in the required range. To make a custom color use makeColor.

Instances

Instances details
Data Color 
Instance details

Defined in Graphics.Gloss.Internals.Data.Color

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Color -> c Color Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Color Source #

toConstr :: Color -> Constr Source #

dataTypeOf :: Color -> DataType Source #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Color) Source #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Color) Source #

gmapT :: (forall b. Data b => b -> b) -> Color -> Color Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Color -> r Source #

gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Color -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> Color -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Color -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Color -> m Color Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Color -> m Color Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Color -> m Color Source #

Num Color 
Instance details

Defined in Graphics.Gloss.Internals.Data.Color

Show Color 
Instance details

Defined in Graphics.Gloss.Internals.Data.Color

Eq Color 
Instance details

Defined in Graphics.Gloss.Internals.Data.Color

Methods

(==) :: Color -> Color -> Bool Source #

(/=) :: Color -> Color -> Bool Source #

makeColor Source #

Arguments

:: Float

Red component.

-> Float

Green component.

-> Float

Blue component.

-> Float

Alpha component.

-> Color 

Make a custom color. All components are clamped to the range [0..1].

makeColorI :: Int -> Int -> Int -> Int -> Color Source #

Make a custom color. All components are clamped to the range [0..255].

rgbaOfColor :: Color -> (Float, Float, Float, Float) Source #

Take the RGBA components of a color.

Color functions

mixColors Source #

Arguments

:: Float

Proportion of first color.

-> Float

Proportion of second color.

-> Color

First color.

-> Color

Second color.

-> Color

Resulting color.

Mix two colors with the given ratios.

addColors :: Color -> Color -> Color Source #

Add RGB components of a color component-wise, then normalise them to the highest resulting one. The alpha components are averaged.

dim :: Color -> Color Source #

Make a dimmer version of a color, scaling towards black.

bright :: Color -> Color Source #

Make a brighter version of a color, scaling towards white.

light :: Color -> Color Source #

Lighten a color, adding white.

dark :: Color -> Color Source #

Darken a color, adding black.

withRed :: Float -> Color -> Color Source #

Set the red value of a Color.

withGreen :: Float -> Color -> Color Source #

Set the green value of a Color.

withBlue :: Float -> Color -> Color Source #

Set the blue value of a Color.

withAlpha :: Float -> Color -> Color Source #

Set the alpha value of a Color.

Pre-defined colors

greyN :: Float -> Color Source #

A greyness of a given order.

Range is 0 = black, to 1 = white.

Primary

Secondary

Tertiary