CSS Color Theroy Flashcards

(19 cards)

1
Q

Color Theory Definition

A

This is the study of how colors interact with each other and how they affect our perception. It covers color relationships, color harmony, and the psychological impact of color

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Primary Colors

A

These colors which are yellow, blue, and red, are the fundamental hues from which all other colors are derived

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Secondary Colors

A

These colors result from mixing equal amounts of two primary colors. Green, orange, and purple are examples of secondary colors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Tertiary Colors

A

These colors result from combining a primary color with a neighboring secondary color. Yellow-Green, Blue-Green, and Blue-Violet are examples of tertiary colors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Warm Colors

A

These colors which include reds, oranges, and yellows, evoke feelings of comfort, warmth, and coziness

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Cool Colors

A

These colors which include blues, green, and purples, evoke feelings of calmness, serenity, and professionalism

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Color Wheel

A

The color wheel is a circular diagram that shows how colors relate to each other. It’s an essential tool for designers because it helps them to select color combinations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Analogous Color Schemes

A

These color schemes create cohesive and soothing experiences. They have analogous colors, which are adjacent to each other in the color wheel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Complementary Color Schemes

A

These color schemes create high contrast and visual impact. Their colors are located on the opposite ends of the color wheel, relative to each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Triadic Color Scheme

A

This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Monochromatic Color Scheme

A

For this color scheme, all the colors are derived from the same base color by adjusting its lightness, darkness, and saturation. This evokes a feeling of unity and harmony while still creating contrast

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Named Colors

A

These colors are predefined color names recognized by browsers. Examples include blue, darkred, lightgreen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

rgb() Function

A

RGB stands for Red, Green, and Blue — the primary colors of light. These three colors are combined in different intensities to create a wide range of colors. the rgb() function allows you to define colors using the RGB color model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

rgba() Function

A

This function adds a fourth value, alpha, that controls the transparency of the color. If not provided, the alpha value defaults to 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

hsl() Function:

A

HSL stands for Hue, Saturation, and Lightness — three key components that define a color

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

hsla() Function

A

This function adds a fourth value, alpha, that controls the opacity of the color.

17
Q

Hexadecimal

A

A hex code (short for hexadecimal code) is a six-character string used to represent colors in the RGB color model. The “hex” refers to the base-16 numbering system, which uses digits 0 to 9 and letters A to F

18
Q

Linear Gradients

A

These gradients create a gradual blend between colors along a straight line. You can control the direction of this line using keywords like to top, to right, to bottom right, or angles like 45deg. You can use any valid CSS color and as many color stops as you would like.

19
Q

Radial Gradients

A

These gradients create circular or elliptical gradients that radiate from a central point.