SISTA 230. Color Theory

Size: px
Start display at page:

Download "SISTA 230. Color Theory"

Transcription

1 SISTA 230 Color Theory

2 CSS Colors CSS color:red; CSS background-color:blue; 17 valid color keywords

3 CSS Color Keywords aqua black blue fuchsia gray green lime maroon navy olive orange purple red silver teal white While these colors provide an element of simplicity and familiarity, we need to be able to specify more colors than these if we want to develop interesting and unique designs. yellow

4 Color Theory Three primary colors: Red Green Blue All colors used in CSS are composed of varying amounts of each of these three colors.

5 Color Theory Primary colors Using the three primary colors, we can create additional colors.

6 Color Theory Secondary colors Colors created using equal amounts of two of the other primary colors are called secondary colors.

7 Color Theory Tertiary colors Similarly, we can create 'tertiary' colors by mixing primary colors with secondary colors.

8 Color Theory Continuing in this fashion, we can create a full color wheel, made up of over 16,000,000 colors that we can choose from.

9 Color Theory White The color white is created by adding equal amounts of all three of the primary colors at full strength.

10 Color Theory Black Conversely, the color black is created by removing any trace of the three primary colors (i.e., no color at all).

11 CSS Colors Created by specifying the amount of each primary color Values range from Must specify a value for each one

12 CSS Colors CSS a { } color:red; Rather than using the keyword 'red', we can specify the specific amounts of each primary color that we want to be used to create the color. a { color:rgb( 255, 0, 0 ); }

13 CSS Colors CSS a { } color:yellow; Since we know that yellow is a secondary color that is created by mixing equal amounts of red and green light, we can use the following: a { color:rgb( 255, 255, 0 ); }

14 CSS Colors Hexidecimal Values Another option for specifying color values is to use the hexidecimal value for the three primary colors. Hexidecimal is a base 16 numbering system, which is different than the base 10 system that we're more familiar with. Base 10 system Known as decimal system Use 0 9 E.g., 25 = 2 tens and 5 ones

15 CSS Colors Hexidecimal Values Base 16 system Known as hexidecimal system Use 0 9 AND A F A = 10, B=11, C=12, D=13, E=14, F=15 It is important that you understand how a hexidecimal value relates to its decimal counterpart. For example: = 2 sixteens and 5 ones = A 16 = 1 sixteens and 10 ones = = 0 sixteens and 0 ones = 0 10 FF 16 = 15 sixteens and 15 ones =

16 CSS Colors Hexidecimal Values CSS a { } color:rgb(red_value,green_value,blue_value); Instead of specifying comma separated values for red, green, and blue, we can use a '#' followed by the hexidecimal values for each of the colors. a { color:#rrggbb; }

17 CSS Colors Hexidecimal Values CSS a { } color:red; a { } color:rgb( 255, 0, 0 ); a { color:#ff0000; } The three examples above all have the same exact effect on the font color.

18 CSS Colors Hexidecimal Shorthand Hexidecimal values can be abbreviated if each of the RGB hex pairs are the same CSS a { } color:#ffcc00; For example, the color value above is made up of two 'f's for the red value, two 'c's for the green value, and two '0's for the blue value. This can be abbreviated as: a { color:#fc0; }

19 CSS Colors Hexidecimal Shorthand This ability to abbreviate often makes specific color schemes easier to remember. It also requires less typing, which is never a bad thing. CSS a { } color:#a00;/*wildcatred*/ a { color:#036;/*wildcatblue*/ }

20 Before moving forward, we'll explore a few definitions to ensure a shared understanding of some common terms. Hues Hue A "pure" color, i.e., one without any white or black added to it

21 Tint Tint A hue with some amount of white added to it To create a tint using CSS hexidecimal values, we simply add equal amounts of the primary colors. For example, each of the following hexidecimal values create lighter tints of red, starting with the full hue and moving towards solid white. #ff0000/*red*/ #ff3333 #ff6666 #ff9999 #ffcccc #ffffff/*white*/

22 Shade Shade A hue with some amount of black added to it To create a shade using CSS hexidecimal values, we simply remove equal amounts of the primary colors. For example, each of the following hexidecimal values create darker shades of red, starting with the full hue and moving towards solid black. #ff0000/*red*/ #cc0000 # # # #000000/*Black*/

23 Color Color is one of the most powerful tools in a web designer's tool box. As with any tool, it can be used to create beautiful pieces of art when used by a skilled developer. Conversely, when in the hands of someone who doesn't know what they're doing, it can easily be misused and ruin a project. Color can be used to... communicate ideas communicate emotion manipulate perception create focus motivate/influence action

24 Color Color can also... disorient/overwhelm your users miscommunicate emotion draw focus (to the wrong thing) influence incorrect actions

25 Color Theory 80/20 Rule The general balance between your colors should be around 80% neutral colors (tints & shades), 20% strong colors (pure hues).

26 Color Theory Warm vs. Cool Colors By drawing a horizontal line across the color wheel, we can divide the colors into 'warm' and 'cool' colors. While the placement of this line is somewhat open for debate, the division used below is commonly accepted as a good spot.

27 Color Theory Warm Colors Stimulating Active More intimate

28 Color Theory Cool Colors Calming Relaxing More 'open'

29 Red Red is a powerful color. It can be used to communicate both positive and negative messages. Red is just as much associated with Cupid as it is with the devil. Common words/emotions/actions associated with red are: Passion Love Seduction Danger Anger Blood Violence Stop

30 Red Very strong color! Red should be used with caution as it can easily take over the visual space, resulting in more eye strain for the user and an overall less enjoyable experience when viewing your website. Great for drawing attention......but can easily draw focus away from other things

31 Yellow Like red, yellow can be a powerful color. It can be used to communicate both positive and potentially negative messages. Common words/emotions/actions associated with yellow are: Sunshine Happiness Warmth Joy Youth Caution Cowardice

32 Yellow Very strong color! Great for drawing attention......but can easily draw focus away from other things Works best as an accent color Be careful when mixing with black or gray!

33 Orange Orange, created from a mix of red and yellow, is a great option when you want a strong impact (like red), but with a little more subtlety. Common words/emotions/actions associated with orange are: Health Food Soothing Autumn Creativity Energy Caution Safety

34 Orange Very versatile light and dark shades bring out different meanings Shares many characteristics of red and yellow but more subtle Lighter tints can be energetic without being overwhelming

35 Black While technically a lack of color, black can be used to communicate lots of things and is a very handy color when properly used alongside other hues. Common words/emotions/actions associated with black are: Power Elegance Wealth Fear Death Evil Negativity

36 Black Acts like a warm color Works well with other bright colors. Can work with darker colors but may provide contrast issues Makes other colors 'pop'. If used too heavily, will overwhelm the page.

37 Green Green is on the edge of the divide between 'warm' and 'cool' colors. Because of this, it is very versatile and can invoke lots of varying emotions depending on its tint/shade and colors it is used with. Common words/emotions/actions associated with green are: Nature Ecology Fertility Luck Harmony Success Money Illness

38 Green Warm and cool! Universally associated with nature Can be a 'restful' color

39 Blue Blue is a powerful color and is worth exploring at a more granular level.

40 Dark Blue Common words/emotions/actions associated with darker shades of blue are: Trust Integrity Knowledge Stability Dignity Authority

41 Bright Blue Common words/emotions/actions associated with pure blue hues are: Cleanliness Strength Dependability Coolness

42 Light Blue Common words/emotions/actions associated with lighter blue tints are: Tranquility Peace Calm Serenity

43 Blue Most versatile of all the colors! Most common color for corporate branding Used LOTS of places can easily become cliché

44 Purple Purple is a powerful color that can draw in some users and alienate others. Because of this, it is best used with other colors. Common words/emotions/actions associated with purple are: Royalty Nobility Dignity Bravery Intelligence Wealth Mystery Magic

45 Purple Can be warm or cool depending on the shade Tends to evoke strong feelings

46 White White is one of the most useful colors at our disposal. It blends well with almost any other color and can provide excellent contrast in most cases. Because it doesn't draw the eye as much as other colors, it is usually not recognized as impacting the meaning of a given color scheme. That said, it's still worth noting some common associations for the color. Common words/emotions/actions associated with white are: Purity Wedding Clean Virtue

47 White Typically used as a neutral background color Allows other colors to take the focus Provides excellent contrast for many hues Can provide a simple and clean feel when used heavily

48 Color and Culture Colors mean different things to different people Know who your target audience is

49 Color Schemes The following color schemes are a convenient approach to selecting colors to use in your website designs. Color schemes: Use position on the color wheel to choose hues Can provide harmony between colors Can provide good contrast between colors

50 Color Schemes Monochromatic Scheme Based on a single color Uses multiple tints/shades of the base color

51 Color Schemes Monochromatic Scheme Pros: Easy to manage Can provide a feeling of elegance through simplicity Good for simple websites that don't need a lot of flair

52 Color Schemes Monochromatic Scheme Cons: Can be overwhelming if not balanced with lighter tints Often lacks contrast Can feel less vibrant than other schemes lacking a mix of warm and cool colors

53 Color Schemes Monochromatic Scheme

54 Color Schemes Monochromatic Scheme

55 Color Schemes Analogous Scheme Based on colors that are close to each other on the color wheel Pick one hue as primary and use the others as accents

56 Color Schemes Analogous Scheme Pros: Easy to manage Can be more vibrant than a monochromatic scheme

57 Color Schemes Analogous Scheme Cons: Can result in poor contrast between colors Can be overwhelming if too many hues are used Can lack a mix of warm and cool colors

58 Color Schemes Analogous Scheme

59 Color Schemes Analogous Scheme

60 Color Schemes Complement Scheme Based on a color and the color directly opposite it on the color wheel Uses multiple tints/shades of one color with accents from the other

61 Color Schemes Complement Scheme Pros: Provides an easy way of including warm and cool colors Provides a natural option for highlighting elements Can provide a 'high energy' feel to the site

62 Color Schemes Complement Scheme Cons: Can look clunky if both colors are used to heavily Can create a feeling of tension Can look drab if used with warm shades/tints

63 Color Schemes Complement Scheme

64 Color Schemes Complement Scheme

65 Color Schemes Split Complement Scheme One dominant hue and the two hues adjacent to its complement Heavy use of the dominant hue and one of the complementary adjacent colors Use remaining complementary adjacent color as an accent color

66 Color Schemes Split Complement Scheme Pros: Less tension between colors than the complement scheme Still provides good contrast Lends itself well to beginners

67 Color Schemes Split Complement Scheme Cons: More difficult to manage than the previous schemes Can look drab if used with warm shades/tints

68 Color Schemes Split Complement Scheme

69 Color Schemes Split Complement Scheme

70 Color Schemes Triad Scheme Three hues that are equidistant from one another Good at providing a mix of "cool" and "warm" colors Let one color dominate and use the others as accents

71 Color Schemes Triad Scheme

72 Color Schemes Triad Scheme

73 Color Schemes Don't reinvent the wheel Working with a color wheel, determining color values, etc. can be daunting work to do by hand. Fortunately, there are a number of color scheme generators that use the principles described above. One example is: Provides a color wheel Provides color scheme options Provides hex colors Does NOT provide good judgment. While most tools will provide you with some convenience when developing color schemes for your designs, you are still expected to use your best judgment when it comes to picking colors.

With colours you can set a mood, attract attention, or make a statement. You can use colour to energise, or to cool down. By selecting the right

With colours you can set a mood, attract attention, or make a statement. You can use colour to energise, or to cool down. By selecting the right COLOUR With colours you can set a mood, attract attention, or make a statement. You can use colour to energise, or to cool down. By selecting the right colour scheme, you can create an ambiance of elegance,

More information

COLOR AS A DESIGN ELEMENT

COLOR AS A DESIGN ELEMENT COLOR COLOR AS A DESIGN ELEMENT Color is one of the most important elements of design. It can evoke action and emotion. It can attract or detract attention. I. COLOR SETS COLOR HARMONY Color Harmony occurs

More information

Choose Paint Colors and Schemes

Choose Paint Colors and Schemes Choose Paint Colors and Schemes When you re decorating your home, choosing the right paint colors is the most important decision you ll make. As fun as choosing colors can be, this part of the planning

More information

Color Theory and Mixing

Color Theory and Mixing MODULE 4 Color Theory and Mixing? What is explored in this module? In this module, we ll look at basic color theory and mixing colors. You ll find that color theory and mixing is not a perfect science.

More information

The Color Wheel is a visual representation of color theory. It is the color spectrum wrapped onto a circle.

The Color Wheel is a visual representation of color theory. It is the color spectrum wrapped onto a circle. The Color Wheel is a visual representation of color theory. It is the color spectrum wrapped onto a circle. It creates an orderly progression of color that helps us understand color balance and harmony.

More information

Hue is what makes a color identifiable and different from any other color, e.g. orange, red-orange, red.

Hue is what makes a color identifiable and different from any other color, e.g. orange, red-orange, red. Hue Hue is what makes a color identifiable and different from any other color, e.g. orange, red-orange, red. Hues are determined (and can be measured) by a color's wavelength. There are millions of hues

More information

Properties of Color. Value: Tint: Shade: Tone: Intensity:

Properties of Color. Value: Tint: Shade: Tone: Intensity: Seeing Color Color and light are inseparable, without light there would be no color When light passes through a prism a spectrum of colors becomes visible Defining Color Hue The name of a color, such

More information

GRAPHICS TECHNOLOGY II

GRAPHICS TECHNOLOGY II GRAPHICS TECHNOLOGY II COLORS ARE PART OF OUR LIFE From the clothes we wear, to the things around us, the food we eat, the things we use- everything. Colors are said to activate the right brain for emotions.

More information

THE MEANING OF COLOR VISUAL COMMUNICATION III 3D DESIGN PRINCIPLES

THE MEANING OF COLOR VISUAL COMMUNICATION III 3D DESIGN PRINCIPLES COLOR THE MEANING OF COLOR Color in design is very subjective. What evokes one reaction in one person may evoke a very different reaction in someone else. Sometimes this is due to personal preference,

More information

CUT the wheel vertically IN HALF: WARM (right) AND COOL COLORS (left)

CUT the wheel vertically IN HALF: WARM (right) AND COOL COLORS (left) COLOR CHEAT SHEET! Simons Arts123 The following information has been collected from a number of websites. See: http://www.youtube.com/watch?v=059-0wrjpau Karen Kavet http://www.color-wheel-pro.com/color-schemes.html

More information

ONE K CREATIVE. tools for social impact storytelling: color

ONE K CREATIVE. tools for social impact storytelling: color tools for social impact storytelling: color THe basics of color application EACH COLOR EVOKES A DIFFERENT EMOTION IN HUMANS; MAKE SURE YOU ARE AWARE OF THE EMOTIONAL RESPONSES TO COLOR, AS WELL AS WHEN

More information

COLOR! You will need to take notes!

COLOR! You will need to take notes! COLOR! You will need to take notes! What is Color? How do we see it? As illustrated in the diagram below, light goes from the source (the sun) to the object (the apple), and finally to the detector (the

More information

COLOR THEORY. The Color Wheel

COLOR THEORY. The Color Wheel COLOR THEORY COLOR THEORY Color theory encompasses a multitude of definitions, concepts and design applications. All the information would fill several encyclopedias. As an introduction, here are a few

More information

Color Theory Basics. What is color theory? Classic color schemes supported by Color Wheel Pro:

Color Theory Basics. What is color theory? Classic color schemes supported by Color Wheel Pro: Color Theory Basics What is color theory? Color Theory is a set of principles used to create harmonious color combinations. Color relationships can be visually represented with a color wheel the color

More information

CONTENTS. These pages are intended to give students practice in using different elements of design. questions that arise connections discovered

CONTENTS. These pages are intended to give students practice in using different elements of design. questions that arise connections discovered CONTENTS Encouraging Interest Help students to develop an understanding and appreciation for different artists and types of art by highlighting a variety of artists each month. Display examples of an artist

More information

CColor Theory in Design

CColor Theory in Design CColor Theory in Design The Color Wheel The Color Wheel A color circle, based on red, yellow and blue, is traditional in the field of art. Sir Isaac Newton developed the first circular diagram of colors

More information

a color companion for designers of any skill level

a color companion for designers of any skill level a color companion for designers of any skill level A Shanty Studios Publication 2017 CONTENTS Introduction....4 Color....6 Models...8 Light....10 Temperature....12 Gamuts....14 Red....16 Orange....18 Yellow....20

More information

Line. The path created by a point moving through space. i n. Horizontal Line. Thin Line. Thick Line

Line. The path created by a point moving through space. i n. Horizontal Line. Thin Line. Thick Line Line The path created by a point moving through space. V er Horizontal Line Diagonal Line Zig-Zag Line Wavy Line t i c a l L i n e Spiral Line Thin Line Thick Line Line can help create the illusion of

More information

Color Schemes.

Color Schemes. Color Schemes http://www.hgtv.com/video/warm-orangelivingdining-room-video/index.html COLOR (Schemes)HARMONIES A color (scheme) harmony is a pleasing combination of colors based on their respective positions

More information

Hue Value Intensity tint shade Tones

Hue Value Intensity tint shade Tones COLOR Color Color is the element of art that is derived from reflective light. You see color because light waves are reflected from objects to your eyes. White light from the sun is actually a combination

More information

The Color Wheel. The color wheel shows relationships between the colors.

The Color Wheel. The color wheel shows relationships between the colors. Color Wheel The Color Wheel The color wheel shows relationships between the colors. Artists often use the color wheel to help understand how colors relate to one another. The Color Wheel Let s learn about

More information

Fashion Merchandising: Strand 7. Elements and Principles of Design

Fashion Merchandising: Strand 7. Elements and Principles of Design Fashion Merchandising: Strand 7 Elements and Principles of Design Standards Students will recognize the use of the principles and elements of design. Standard 1: Reassess elements of design. Standard 2:

More information

Elements of Art. Define: Line. Shape. Value. Texture. Color. Form. Space

Elements of Art. Define: Line. Shape. Value. Texture. Color. Form. Space Elements of Art Line Shape Value Texture Color Form Space Directions: When we talk about the parts that make up a picture or work of art, we refer to them as elements. In the space below, draw a picture

More information

Color in Landscaping. By C. Kohn Agricultural Sciences Waterford WI

Color in Landscaping. By C. Kohn Agricultural Sciences Waterford WI Color in Landscaping By C. Kohn Agricultural Sciences Waterford WI Color Color is the difference in the visual appearance of objects due to how they reflect light into a person s eyes. Different objects

More information

COLOR Cartographic Design & Principles Winter 2016

COLOR Cartographic Design & Principles Winter 2016 COLOR Cartographic Design & Principles Winter 2016 Edward Tufte s Color Tufteisms Graphical excellence is the well-designed presentation of interesting data a matter of substance, of statistics, and of

More information

Color Theory. Additive Color

Color Theory. Additive Color Color Theory A primary color is a color that cannot be made from a combination of any other colors. A secondary color is a color created from a combination of two primary colors. Tertiary color is a combination

More information

Example: Leaf. Cut out the shape using scissors, and carefully use the template to place your sampling outlines evenly around the drawing paper.

Example: Leaf. Cut out the shape using scissors, and carefully use the template to place your sampling outlines evenly around the drawing paper. Colored Pencil Samplings Because of the technical skills required to successfully manipulate colored pencils, you must first practice some of the basic techniques involved with drawing colored pencil compositions.

More information

DESIGNING FLOWER BEDS with

DESIGNING FLOWER BEDS with DESIGNING FLOWER BEDS with Good flower bed designs incorporate many different features Relative surface feel or look On plants, texture comes from Leaves Twigs Bark Texture also comes from Rocks Pavement

More information

The Color Wheel NEXT. An Introduction to the Color Wheel and Color Theory. By Pam & Tim O Loughlin Art Specialists Oshkosh Area School District

The Color Wheel NEXT. An Introduction to the Color Wheel and Color Theory. By Pam & Tim O Loughlin Art Specialists Oshkosh Area School District The Color Wheel An Introduction to the Color Wheel and Color Theory Weblinks By Pam & Tim O Loughlin Art Specialists Oshkosh Area School District Resource List NEXT The Color Wheel The color wheel shows

More information

Compelling Color Combinations in Desert Gardens. Angelica Elliott, Program Development Manager

Compelling Color Combinations in Desert Gardens. Angelica Elliott, Program Development Manager Compelling Color Combinations in Desert Gardens Angelica Elliott, Program Development Manager Learning Objectives Apply color into their gardens to create pleasing color combinations and color harmony.

More information

Color 911 HOW TO WORK WITH (AND ENHANCE) YOUR YARN COLLECTION. Lisa Check Fiber Farmer and Indie Dyer Flying Goat Farm

Color 911 HOW TO WORK WITH (AND ENHANCE) YOUR YARN COLLECTION. Lisa Check Fiber Farmer and Indie Dyer Flying Goat Farm Color 911 HOW TO WORK WITH (AND ENHANCE) YOUR YARN COLLECTION Lisa Check Fiber Farmer and Indie Dyer Flying Goat Farm HELP!! I buy the same yarn at every fiber festival Purple (insert color here) is my

More information

COLOR PLANNING FOR INTERIORS JOSHIMA V.M., UON.

COLOR PLANNING FOR INTERIORS JOSHIMA V.M., UON. COLOR PLANNING FOR INTERIORS JOSHIMA V.M., UON. COLOR CONCEPTS & SYSTEMS 1. Additive mixing 2. Subtractive mixing 3. Munsell color system 4. Pantone System 5. Artist s circle 6. Traditional color schemes

More information

MAKING COLOR CHOICES FOR WEB SITES

MAKING COLOR CHOICES FOR WEB SITES MAKING COLOR CHOICES FOR WEB SITES Bibliography: The following information was gathered through Web and book research. It was then edited into the current color guide (Making Color Choices for Web sites).

More information

Value. Value-It is the lightness or darkness of an object, regardless of color. Value is relative to the background color and other items on the page.

Value. Value-It is the lightness or darkness of an object, regardless of color. Value is relative to the background color and other items on the page. Value Value-It is the lightness or darkness of an object, regardless of color. Value is relative to the background color and other items on the page. Value is created by a light source that shines on an

More information

Content Creation Guide

Content Creation Guide Content Creation Guide About Formetco s Digital Division Formetco s digital division has a singular mission directive. That is to ensure the engineering and deployment of the outdoor advertising industry

More information

Tone The gradual change of tone across this surface indicates that it is curved rather than flat. 1. Light (see note)

Tone The gradual change of tone across this surface indicates that it is curved rather than flat. 1. Light (see note) Colour Theory: Illustration, Colour, Layout and Desk Top Publishing Illustration terms Look at this at example of a computer rendering. Notice some of the key features of the illustration that make it

More information

chrysanthos Version 2.2 by Chrysanthos Color Company Limited China. All rights reserved.

chrysanthos Version 2.2 by Chrysanthos Color Company Limited China. All rights reserved. chrysanthos C O L O R C O M P A N Y L T D Version 2.2 by Chrysanthos Color Company Limited China. All rights reserved. 1 contents Outline 3 Lesson 1 5 Lesson 2 9 Lesson 3 17 2 outline The Color Wheel project

More information

What influences colour and what does colour influence?

What influences colour and what does colour influence? 1 What influences colour and what does colour influence? COLOUR has associations of feelings eg.red: Anger, Passion, power, love etc Green: Freshness, re-birth, life, growth Blue: Tranquility, sadness,

More information

Designing Flower Beds with Colors

Designing Flower Beds with Colors Utah State University DigitalCommons@USU All Archived Publications Archived USU Extension Publications 1-1-2005 Designing Flower Beds with Colors Larry A. Sagers Follow this and additional works at: http://digitalcommons.usu.edu/extension_histall

More information

Elements of Design. Line Texture Color Shape & Form Pattern. TOOLS The elements of design are the tools we use to create a style or design.

Elements of Design. Line Texture Color Shape & Form Pattern. TOOLS The elements of design are the tools we use to create a style or design. Elements of design Elements of Design Line Texture Color Shape & Form Pattern TOOLS The elements of design are the tools we use to create a style or design. Line in Fashion Lines can deflect your gaze

More information

Objective Explain design concepts used to create digital graphics.

Objective Explain design concepts used to create digital graphics. Objective 102.01 Explain design concepts used to create digital graphics. PART 1: ELEMENTS OF DESIGN o Color o Line o Shape o Texture o Watch this video on Fundamentals of Design. 2 COLOR o Helps identify

More information

Principles of Design

Principles of Design Principles of Design Balance A. Stability of an arrangement 1. Arrangement appears secure and stable 2. Balance must be both visual and actual Balance a. visual balance refers to the way an arrangement

More information

check it out online at

check it out online at check it out online at www.belyea.com/svc/all_about_color.pdf Who am I? I got the blues Experience and Emotions through color PASSION JOY Depression HARMONY CREATIVITY PEACE MOURNING It s a bird, it s

More information

Horace A picture is worth a thousand words. Napoleon Bonaparte A work of art is the unique result of a unique

Horace A picture is worth a thousand words. Napoleon Bonaparte A work of art is the unique result of a unique A man paints with his brains and not with his hands. Michelangelo A painting that is well composed is half finished. A picture is a poem without words. Pierre Bonnard Horace A picture is worth a thousand

More information

Elements of Art and Fashion

Elements of Art and Fashion Elements of Art and Fashion Ø Line Ø Shape Ø Value Ø Texture Ø Color Ø Volume/Form Ø Space Directions: When we talk about the parts that make up a picture or work of art, we refer to them as elements.

More information

The Quiz will cover: Pen Tool Review, Text and Text Graphics Lessons, and Color Harmony Landscape Project.

The Quiz will cover: Pen Tool Review, Text and Text Graphics Lessons, and Color Harmony Landscape Project. Quiz 1 - Computer Graphics 2 Your first quiz is designed to review and test your knowledge of the fundamental terms and tools regarding the Illustrator Program: Basic Program Information, Tools and functions.

More information

Elements Of Art Study Guide

Elements Of Art Study Guide Elements Of Art Study Guide General Elements of Art- tools artists use to create artwork; Line, shape, color, texture, value, space, form Composition- the arrangement of elements of art to create a balanced

More information

TRADE OF PAINTING & DECORATING

TRADE OF PAINTING & DECORATING TRADE OF PAINTING & DECORATING PHASE 2 Module 3 Imitative and Decorative Arts UNIT: 1 Table of Contents Introduction... 1 Learning Outcomes... 2 1.0 Pigmental, primary, secondary & tertiary colours...

More information

Deposit Central School District Curriculum Map

Deposit Central School District Curriculum Map GRADE LEVEL: 5-6 What are the most effective ways to use the elements of art and principals of design in art? In what ways can I incorporate the elements of art and principles of design together in art?

More information

LIGHTIG FOR INTERIORS

LIGHTIG FOR INTERIORS LIGHTIG FOR INTERIORS COLORS LIGHTING Interior Design Department Third grade/ Fall semester Siba nazem Kady COLORS THEORIES OF COLOR DESIGN Review The Hue REVIEW HUE,VALUE, AND SATURATION - Gradation of

More information

What is Color? The element of art derived from reflected light. Light reflects off objects, sending colors back to our eyes.

What is Color? The element of art derived from reflected light. Light reflects off objects, sending colors back to our eyes. Chapter 7: COLOR What is Color? The element of art derived from reflected light. Light reflects off objects, sending colors back to our eyes. I. Color Spectrum Color Spectrum: The bands of color created

More information

Name: Period: THE ELEMENTS OF ART

Name: Period: THE ELEMENTS OF ART Name: Period: THE ELEMENTS OF ART Name: Period: An element of art that is used to define shape, contours, and outlines, also to suggest mass and volume. It may be a continuous mark made on a surface with

More information

The Visual Elements Part II. Lecture 3B

The Visual Elements Part II. Lecture 3B The Visual Elements Part II Lecture 3B Lecture Overview: The 5 Main Visual Elements 1. Line /Shape 2 Space 3. Texture/Pattern 4. Time / Motion 5. Light / Color The language of art is the visual elements.

More information

Color and Texture. To understand and apply the design elements Color & Texture.

Color and Texture. To understand and apply the design elements Color & Texture. Color and Texture To understand and apply the design elements Color & Texture. Color Color is the quality of an object or substance with respect to light reflected by the object, usually determined visually

More information

THE GARDENER S COLOR WHEEL. A Guide to Planning Color in the Garden

THE GARDENER S COLOR WHEEL. A Guide to Planning Color in the Garden THE GARDENER S COLOR WHEEL A Guide to Planning Color in the Garden 1 Introducing The Gardener s Color Wheel As a passionate gardener and former set designer, I ve found the color wheel a wonderfully helpful,

More information

Answer the questions below.

Answer the questions below. Color Theory Answer the questions below. The two images to the right were created by the same artist. How is the color in these two paintings different? How does the color tone of these paintings effect

More information

Part I: Color Foundations The Basic Principles of COLOUR theory

Part I: Color Foundations The Basic Principles of COLOUR theory Part I: Color Foundations The Basic Principles of COLOUR theory Colour Systems Available colour systems are dependent on the medium with which a designer is working. When painting, an artist has a variety

More information

Color is a property of light.

Color is a property of light. Color Theory I Color is a property of light. -Objects have no color of their own, they just reflect a particular wavelength from the color spectrum. (For example a blue object absorbs all of the wavelengths,

More information

Design Elements: Understanding Color

Design Elements: Understanding Color Design Elements: Understanding Color Chris A. Paschke, CPF, GCF, CMG Lecture Sponsored by NielsenBainbridge West Coast Art & Frame Expo, Las Vegas 2017 Color is the most emotional and expressive element

More information

C40M75Y80 M10Y35 C40Y70K10 C100Y50 Earthy doesn't mean lifeless. These shades of brown and tan are enlivened with a bright teal accent.

C40M75Y80 M10Y35 C40Y70K10 C100Y50 Earthy doesn't mean lifeless. These shades of brown and tan are enlivened with a bright teal accent. Brown, tan, beige Meaning Brown is a natural, down-to-earth neutral color. It is found in earth, wood, and stone. While brown conveys a wholesome earthiness. It is a warm color that can stimulate the appetite.

More information

Review Questions for Design Final Exam Correct answers are highlighted in RED

Review Questions for Design Final Exam Correct answers are highlighted in RED Review Questions for Design Final Exam Correct answers are highlighted in RED 1. What type of art is this image? a. Abstract b. Non-Objective c. Realistic 2. What type of art is this image? a. Abstract

More information

Elements of Art and Fashion

Elements of Art and Fashion Elements of Art and Fashion Ø Line Ø Shape Ø Value Ø Texture Ø Color Ø Volume/Form Ø Space Directions: When we talk about the parts that make up a picture or work of art, we refer to them as elements.

More information

Art & Design visual elements

Art & Design visual elements Make your own colour scheme Which 20 colours suit you best? Choose 20 of your favourite colours out of the different stacks on the tables. Make sure to group harmonious colours together. Discuss the place

More information

Color Wheel Magic. by Margie Deeb. PART 3: Color Scheme #1 Monochromatic Using Contrast to Make Stronger Palettes

Color Wheel Magic. by Margie Deeb. PART 3: Color Scheme #1 Monochromatic Using Contrast to Make Stronger Palettes Color Wheel Magic PART 1: Properties of Color by Margie Deeb 101 PART 2: Properties of Color Color Wheel Layout PART 3: Color Scheme #1 Monochromatic Using Contrast to Make Stronger Palettes PART 4: Color

More information

Complementary colours

Complementary colours Complementary colours red and green Yellow and purple Blue and orange Any two colours which are directly opposite each other. These opposing colours create maximum contrast and maximum stability Artist:

More information

the messenger of experience! form! and color! product design!

the messenger of experience! form! and color! product design! the messenger of experience! form! and color! 2.744 product design! the messenger of experience! color! 2.744 product design! but first! a mini quiz!! list 4 steps/levels in a systematic form-giving process!

More information

Color Wheel. Warm Colors. Cool Colors

Color Wheel. Warm Colors. Cool Colors Color Wheel Warm Colors Cool Colors How we see color: the light source gives a full spectrum of wavelengths (All 6 colors). The cup absorbs every wave length of color except Blue. Blue is reflected back

More information

Design Elements: Understanding Color

Design Elements: Understanding Color Design Elements: Understanding Color Chris A. Paschke, CPF, GCF, CMG Lecture Sponsored by Specialty Matboard West Coast Art & Frame Expo, Las Vegas 2018 Color is the most emotional and expressive element

More information

Art 2D Mid-Term Review 2018

Art 2D Mid-Term Review 2018 Art 2D Mid-Term Review 2018 Definition: What is a Line? Definition: Line is the most basic design tool. A line has length, width, tone, and texture. It may divide space, define a form, describe contour,

More information

Red. By Jessica Lia BREAKFAST STOCK CLUB PREMIUM CHALLENGE #85

Red. By Jessica Lia BREAKFAST STOCK CLUB PREMIUM CHALLENGE #85 S E Q U O I A C L U B BREAKFAST STOCK CLUB PREMIUM CHALLENGE #85 Red By Jessica Lia As a stock photographer, it s a ritual for me to shoot something for Christmas and Valentine s Day every year because

More information

COLOR CO C L O O L R O

COLOR CO C L O O L R O COLOR COLOR Y O G R B V informal definitions HUE a particular gradation of color. It is another word for color. PRIMARY & secondary RED BLUE PURPLE GREEN YELLOW ORANGE Primary: Red, Yellow, Blue. All Colors

More information

Design Elements. Arbroath Academy - Technology Department - National 5 Graphic Communication

Design Elements. Arbroath Academy - Technology Department - National 5 Graphic Communication Design Elements There are eight elements of graphic design that are the starting point of your design ideas: Line Shape Texture Space Size Value Colour Mass/Weight Each of these Elements is a building

More information

Elements of Art. Line Shape Form Space Value Color Texture

Elements of Art. Line Shape Form Space Value Color Texture Elements of Art Line Shape Form Space Value Color Texture Line Line is the path of a moving point through space. Mark on a surface usually created by a pencil, pen, crayon, marker or paintbrush. Thick

More information

Elements and Principles

Elements and Principles Elements and Principles of Art The building blocks and how we use them Your recipe for creating art! Lets learn the ingredients! ART INGREDIENTS! Elements of Art: The basic building blocks/ foundation

More information

Colour wheels. Everywhere colour - Colour wheels 1

Colour wheels. Everywhere colour - Colour wheels 1 Colour wheels Colour wheels The best way to learn how colours work together is with a colour wheel. Colour wheels are made using the colour spectrum and help decorators put colour schemes together. Everywhere

More information

UBT128X Colour theory

UBT128X Colour theory UBT128X Colour theory Unit reference number: L/507/5481 Level: 3 Guided Learning (GL) hours: 25 Overview This unit is about exploring the concepts and theories of colour. Learners will develop the knowledge

More information

LIGHTIG FOR INTERIORS

LIGHTIG FOR INTERIORS LIGHTIG FOR INTERIORS COLORS- Lecture 4 LIGHTING Interior Design Department Third grade/ Fall semester Siba nazem Kady COLORS 1. COLOR 2. FORM AND COLOR 1. COLOR COLORS Color Interaction Color never appears

More information

Elements of Art Principles of Organization

Elements of Art Principles of Organization Elements of Art Principles of Organization Robert Spahr Associate Professor Department of Cinema & Photography rspahr@siu.edu http://www.robertspahr.com Pieter Claesz. (Dutch, about 1597 1660), Still

More information

DESIGN GUIDELINES VILLAGEOF KEREMEOS CONTENTS:

DESIGN GUIDELINES VILLAGEOF KEREMEOS CONTENTS: VILLAGEOF KEREMEOS C@I@IIR DESIGN GUIDELINES CONTENTS: Introduction 2 Colour in the Downtown...p.3 Basic Colour Theory 4 Colour Schemes 5-6 Historic Colour Schemes 7 Contemporary Colour Schemes 8 Colour

More information

The basic tenets of DESIGN can be grouped into three categories: The Practice, The Principles, The Elements

The basic tenets of DESIGN can be grouped into three categories: The Practice, The Principles, The Elements Vocabulary The basic tenets of DESIGN can be grouped into three categories: The Practice, The Principles, The Elements 1. The Practice: Concept + Composition are ingredients that a designer uses to communicate

More information

EnvSci 360 Computer and Analytical Cartography

EnvSci 360 Computer and Analytical Cartography EnvSci 360 Computer and Analytical Cartography Lecture 6 Mapping with Color Why Use Color? It is one of the available visual variables you can mix with other graphic elements to improve communication Color

More information

The Element of Art. 1.Line 2.Shape (2-D) 3.Form (3-D) 4.Space (3-D depth or distance) 5.Texture 6.Color

The Element of Art. 1.Line 2.Shape (2-D) 3.Form (3-D) 4.Space (3-D depth or distance) 5.Texture 6.Color The Element of Art 1.Line 2.Shape (2-D) 3.Form (3-D) 4.Space (3-D depth or distance) 5.Texture 6.Color Line- is alive! Line is an important element however line can never be entirely divorced from the

More information

7 KEYS TO USING COLOR 2015

7 KEYS TO USING COLOR 2015 TIPS FOR CREATING DYNAMIC COMPOSITION AND COLOR HAVE YOU GOTTEN FRUSTRATED BY COLOR THEORY? THE EASIEST WAY TO DISCOVER COLOR IS THROUGH PAINTING. Fields, Last Glow, oil, 4 x 6 And learning that way has

More information

Color is derived from Reflected Light.

Color is derived from Reflected Light. How We See Color Color is derived from Reflected Light. White light from the sun is actually a combination of all colors. When light passes through a prism, a wedge-shaped glass, the beam of light bends

More information

Objec&ve % Explain design concepts used to create digital graphics.

Objec&ve % Explain design concepts used to create digital graphics. Objec&ve 102.01 15% Explain design concepts used to create digital graphics. Part 1: Elements of Design q Color q Line q Shape q Texture Color q Helps iden&fy objects in a design. q Creates visual flow

More information

Principles of Architectural Design Lec. 2.

Principles of Architectural Design Lec. 2. Principles of Architectural Design Lec. 2. The Complementary Elements of design. The complementary elements characterize the natural elements, creating means of comparison for the primary elements used

More information

ARTS D Design. Project 1: Art Elements. Reading Guide: form. elements of art. line. shape. value. texture. color. principles of organization

ARTS D Design. Project 1: Art Elements. Reading Guide: form. elements of art. line. shape. value. texture. color. principles of organization ARTS 101 2-D Design Project 1: Art Elements Reading Guide: form elements of art line shape value texture color principles of organization harmony variety balance proportion dominance movement economy unity

More information

GAME SETUP. Game Setup Diagram

GAME SETUP. Game Setup Diagram A world of beautiful colors comes alive as players complete commissions that picture some of the finest European and American art works from the past six centuries. The word pastiche is used in the fields

More information

Line Line Characteristic of Line are: Width Length Direction Focus Feeling Types of Line: Outlines Contour Lines Gesture Lines Sketch Lines

Line Line Characteristic of Line are: Width Length Direction Focus Feeling Types of Line: Outlines Contour Lines Gesture Lines Sketch Lines Line Line: An element of art that is used to define shape, contours, and outlines, also to suggest mass and volume. It may be a continuous mark made on a surface with a pointed tool or implied by the edges

More information

NEWTONIAN COLOR THEORY

NEWTONIAN COLOR THEORY THEORY 2D Design Color Crash Course NEWTONIAN THEORY Color in a picture is like enthusiasm in life. -incent an Gogh In 1666 Sir Isaac Newton (1642-1726) passed a beam of light through a prism and proved

More information

OBJECT OF THE GAME The goal of Pastiche is to score the most points, which are earned by completing commission cards through collecting the necessary

OBJECT OF THE GAME The goal of Pastiche is to score the most points, which are earned by completing commission cards through collecting the necessary A world of beautiful colors comes alive as players complete commissions that picture some of the finest European and American art works from the past six centuries. The word pastiche is used in the fields

More information

Contents. Teachers Notes 4 Handy Hints 5 Colour 7 Techniques Explained 8 How To Use This Book 9

Contents. Teachers Notes 4 Handy Hints 5 Colour 7 Techniques Explained 8 How To Use This Book 9 Contents Teachers Notes 4 Handy Hints 5 Colour 7 Techniques Explained 8 How To Use This Book 9 Beach Umbrella 10-12 Chameleon 13-15 Banana Sundae 16-18 Life Cycle 19-21 Don t Bully Me 22-23 Balloon Faces

More information

DOWNLOAD PDF COMPLEMENTARY THEMES FOR PAINTING TECHNIQUES

DOWNLOAD PDF COMPLEMENTARY THEMES FOR PAINTING TECHNIQUES Chapter 1 : Decorative Painting Ideas Complementary Themes for Painting Techniques (Complete Course on Painting and Drawing) [Parramon Editorial Team] on racedaydvl.com *FREE* shipping on qualifying offers.

More information

The Elements and Principles of Art

The Elements and Principles of Art The Elements and Principles of Art The elements and principles can be applied to discuss any of the visual arts including: painting, photography, set design, graphic design, sculpture, and architecture.

More information

COLOR SECRETS OF THE PROS

COLOR SECRETS OF THE PROS COLOR SECRETS OF THE PROS 2018 NANCY HILLIS, M.D. 1 Thank you for registering for the Workbook Hello Dear Artist and welcome to the Color Secrets Of The Pros Workbook. I ve put together for you the secrets

More information

The Elements of Art: Photography Edition. Directions: Copy the notes in red. The notes in blue are art terms for the back of your handout.

The Elements of Art: Photography Edition. Directions: Copy the notes in red. The notes in blue are art terms for the back of your handout. The Elements of Art: Photography Edition Directions: Copy the notes in red. The notes in blue are art terms for the back of your handout. The elements of art a set of 7 techniques which describe the characteristics

More information

Elements of Art. Robert Spahr Associate Professor Department of Cinema & Photography

Elements of Art. Robert Spahr Associate Professor Department of Cinema & Photography Elements of Art Robert Spahr Associate Professor Department of Cinema & Photography rspahr@siu.edu http://www.robertspahr.com Pieter Claesz. (Dutch, about 1597 1660), Still Life with Stoneware Jug, Wine

More information

color basics theory & application Fall 2013 Ahmed Ansari Communication Design Fundamentals

color basics theory & application Fall 2013 Ahmed Ansari Communication Design Fundamentals color basics theory & application Fall 2013 Ahmed Ansari Communication Design Fundamentals Presentation 7 Tom Fraser + Adam Banks Designer's Color Manual Johannes Itten The Art of Color Ellen Lupton &

More information

Notes. Colour wheels

Notes. Colour wheels Colour wheels Colour wheels The best way to learn how colours work together is with a colour wheel. Colour wheels are made using the colour spectrum and help decorators put colour schemes together. Everywhere

More information

Above and Beyond. designed by Stephanie Cooper 1

Above and Beyond. designed by Stephanie Cooper 1 Above and Beyond designed by Stephanie Cooper 1 Color Workshop Spring 2011 Above and Beyond designed by Stephanie Cooper 2 3 Introduction to Cyan A clear, cyan-colored sky is symbolic. Cyan greets us first

More information