hex(ca8454) - converting colors

29
Converting Colors Hex(CA8454)

Upload: khangminh22

Post on 05-Feb-2023

1 views

Category:

Documents


0 download

TRANSCRIPT

ConvertingColors

Hex(CA8454)

Have a look what the booklet forHex(CA8454) contains.

Hex(CA8454) 3 ............................................................. Conversions 4 ....................................................... Details 6 ................................................................ Harmonies 11 ........................................................ Previews 18 ........................................................... Color Blindness Simulation 21 ........................... CSS Examples 24 ..................................................

Color

Hex(CA8454)

13-01-2022 6/29 convertingcolors.com

Details

The Hex color CA8454 is a dark color, and thewebsafe version is hex CC9966. The color can bedescribed as middle muted orange. Acomplement of this color would be 549ACA, andthe grayscale version is 949494.

A 20% lighter version of the original color isFFB987, and 905225 is the 20% darker color. Ifyou saturate the color by 10%, you get CA7840,and if you desaturate by 10%, it is CA9068.

13-01-2022 7/29 convertingcolors.com

Distribution

RGB

Red (79%)

Green (52%)

Blue (33%)

RYB

Red (79%)

Yellow (65%)

Blue (33%)

CMYK

Cyan (0%)

Magenta (35%)

Yellow (58%)

Black (21%)

CMY

Cyan (21%)

Magenta (48%)

Yellow (67%)

13-01-2022 8/29 convertingcolors.com

Brightness & SaturationGradients

These gradients show how the Hex color CA8454changes by changing the brightness by 10 percent. Thefirst figure shows a shift by +10% for each color and thesecond figure -10%.

Similar to the brightness gradients but the followingsaturation gradients show a change of the Hex colorCA8454 by changing the saturation by 10% instead.

13-01-2022 9/29 convertingcolors.com

CA8454

E89E6D

FFB987

FFD5A1

FFF2BC

FFFFD8

FFFFF5

FFFFFF

CA8454

AD6B3C

905225

743A0D

592400

3E0E00

270000

000000

CA8454

CA7840

CA6C2C

CA6017

CA5403

CA5200

CA8454

CA9068

CA9C7C

CAA891

CAB4A5

CAC0B9

CACCCD

CAD8E1

13-01-2022 11/29 convertingcolors.com

Harmonies

AnalogousThe analogous color harmony consists of three colorsthat are next to each other on the color wheel.

DB7872

CA8454

AC9247

13-01-2022 12/29 convertingcolors.com

TriadThe triadic color harmony groups three colors that areevenly spaced from another and form a triangle on thecolor wheel.

CA8454

00A892

958BD7

13-01-2022 13/29 convertingcolors.com

ComplementaryThe complementary color scheme is a pair of colorswhich are on the opposite of each other on the colorwheel.

CA8454

549ACA

13-01-2022 14/29 convertingcolors.com

Split ComplementarySplit-complementary colors differ from thecomplementary color scheme. The scheme consists ofthree colors, the original color and two neighbors of thecomplement color.

5099E0

CA8454

00A7B8

13-01-2022 15/29 convertingcolors.com

SquareThe square scheme is like the rectangle color scheme,but the four colors are evenly spaced on the colorwheel.

CA8454

57A46C

00A2D4

C27DBC

13-01-2022 16/29 convertingcolors.com

RectangleThe rectangle color scheme consists of four colors thatform a rectangle on the color wheel.

CA8454

939A4A

00A2D4

8190DC

13-01-2022 17/29 convertingcolors.com

SweetspotThe sweet spot groups the original color and fivecomplimentary colors.

CA8454

FFE4D1

CA549B

806F63

000000

808080

13-01-2022 18/29 convertingcolors.com

Previews

White Background

This preview shows how the Hex color CA8454 looks ona white background.

Color Contrast Check

Large Text (above 18pt) WCAG AA ✓ PassAny Text WCAG AA ✕ FailLarge Text (above 18pt) WCAG AAA ✕ FailAny Text WCAG AAA ✕ Fail

13-01-2022 19/29 convertingcolors.com

Black Background

This preview shows how the Hex color CA8454 looks ona black background.

Color Contrast Check

Large Text (above 18pt) WCAG AA ✓ PassAny Text WCAG AA ✓ PassLarge Text (above 18pt) WCAG AAA ✓ PassAny Text WCAG AAA ✕ Fail

If you want to check with other color combinations, trythe Color Contrast Checker.

13-01-2022 20/29 convertingcolors.com

Hex CA8454 Background

This preview shows how black text looks on abackground with the Hex color CA8454.

This preview shows how white text looks on abackground with the Hex color CA8454.

13-01-2022 21/29 convertingcolors.com

Color BlindnessSimulation

Color vision deficiency is a very complex topic, and Icould not describe the different causes any better thanWikipedia does, so if you want to learn more, youshould check out their article about color blindness.

Dichromacy

Original ColorCA8454

ProtanopiaA2955A

DeuteranopiaB68E52

13-01-2022 22/29 convertingcolors.com

TritanopiaCE7E87

13-01-2022 24/29 convertingcolors.com

CSS Examples

Text

The CSS property to change the color of the text to HexCA8454 is called "color". The color property can be seton classes, ids or directly on the HTML element.

This example shows how text in the color #CA8454looks like.

.text, #text, p{ color:#CA8454}

13-01-2022 25/29 convertingcolors.com

If you want to add a text shadow in that color use thetext-shadow property, you can generate a text shadowdirectly with our CSS Text Shadow Generator.

Here you see how black text with a 4 pixel #CA8454Here you see how black text with a 4 pixel #CA8454

colored shadow looks like.colored shadow looks like.

.shadow{ text-shadow: 4px 4px 2px #CA8454}

Border

The CSS property to change the border of an element toHex CA8454 is called "border". The border property canbe set on classes, ids or directly on the HTML element.

This example shows the color as border, it can beapplied via the CSS property "border" or "border-color".

.border, #border, table{ border:4px solid#CA8454 }

13-01-2022 26/29 convertingcolors.com

If only the border color should be changed use theproperty border-color.

.border{ border-color:#CA8454 }

If you want to add a box shadow in that color use:

Here you see how a box with a 4 pixel #CA8454colored shadow looks like.

.boxshadow{ -moz-box-shadow:4px 4px 4px4px #CA8454; -webkit-box-shadow:4px 4px4px 4px #CA8454; box-shadow:4px 4px 4px4px #CA8454 }

13-01-2022 27/29 convertingcolors.com

Background

The CSS property to change the background color of anelement to Hex CA8454 is called "background". Thebackground property can be set on classes, ids ordirectly on the HTML element.

.background, #background, body{background:#CA8454 }

If only the background color should be changed can beused:

.background{ background-color:#CA8454 }

This example shows the color as background, it isapplied via the CSS property "background".

To optimize and compress your CSS code, you can useour online CSS compressor and optimizer based oncsstidy. If you want to create a linear or radial gradientas background or border, check our CSS GradientGenerator.

Hey! You found this bookletinteresting? Have a look at my otherbooklet HOWCOLORS.WORK – A CSScolor notation guide.

HOWCOLORS.WORKA CSS color notation guide.Are you new to web developmentand want to know the differentways to express colors in CSS?Then this booklet is for you!

HOWCOLORS.WORK will helpyou understand the syntax ofthe color notations in CSS.You will learn all the current andnew ways to express colors toprepare yourself for the future!

Buy now, starting at $4.99!

Follow meon Twitter!

@ConvertingColor