SlideShare a Scribd company logo
IN A ROCKET
Learn front-end development at rocket speed
CSS CSS FUNDAMENTALS
Color
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
NAMED COLORS
With this code all paragraphs are shown in green.
The color property sets the foreground color of an element's text content, and its decorations.
p { color: green }
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX
COLORS
NAMED

COLORS
HSL/HSLA
COLORS
RGB/RGBA
COLORS
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
NAMED COLORS
Pink Hex RGB
Red Hex RGB
Orange Hex RGB
Yellow Hex RGB
White Hex RGB Gray & black Hex RGB Green Hex RGB
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
NAMED COLORS
Blue Hex RGB Purple Hex RGBCyan Hex RGB Brown Hex RGB
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
NAMED COLORS
<body>
<p>CSS rocks!</p>
</body>
p { color: red; }
Web page title
index.html
CSS rocks!
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX
COLORS
NAMED

COLORS
HSL/HSLA
COLORS
RGB/RGBA
COLORS
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX COLORS
p { color: #000000 }
Red Green Blue
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX COLORS
#
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
RED GREEN BLUE
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX COLORS
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
#
RED
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
GREEN
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
BLUE
= #ff0000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX COLORS
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
#
RED
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
GREEN
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
BLUE
= #00ff00
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX COLORS
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
#
RED
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
GREEN
F
E
D
C
B
A
9
8
7
6
5
4
3
2
1
0
BLUE
= #0000ff
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX COLORS
#000000
#000
#ffffff
#fff
#ff0000
#f00
#00ff00
#0f0
#0000ff
#00f
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
HEX COLORS
<body>
<p>CSS rocks!</p>
</body>
p { color: #f00; }
Web page title
index.html
CSS rocks!
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
GAME: GUESS THE COLOR
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX
COLORS
NAMED

COLORS
HSL/HSLA
COLORS
RGB/RGBA
COLORS
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
RGB / RGBA COLORS
p { color: rgb(0,0,255) }
Red Green Blue
255
0
255
0
255
0
With this code all paragraphs are shown in blue.
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
RGB / RGBA COLORS
rgb(0,0,0)
rgb(255,255,255)
rgb(255,0,0)
rgb(0,255,0)
rgb(0,0,255)
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
RGB / RGBA COLORS
<body>
<p>CSS rocks!</p>
</body>
p { color: rgb(0,0,255) }
Web page title
index.html
CSS rocks!
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
RGB / RGBA COLORS
p { color: rgba(0,0,255,0.5) }
Alpha

(transparency)
1
0
With this code all paragraphs are shown in blue with 50% transparency.
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
RGB / RGBA COLORS
<body>
<p>CSS rocks!</p>
</body>
p { color: rgba(0,0,255,0.5) }
Web page title
index.html
CSS rocks!
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HEX
COLORS
NAMED

COLORS
HSL/HSLA
COLORS
RGB/RGBA
COLORS
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HSL/HSLA COLORS
p { color: hsl(240,100%,50%) }
Hue Saturation Lightness
0 360
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HSL/HSLA COLORS
hsl(0,0%,0%)
hsl(0,0%,100%)
hsl(0,100%,50%)
hsl(120,100%,50%)
hsl(240,100%,50%)
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
HSL/HSLA COLORS
<body>
<p>CSS rocks!</p>
</body>
p { color: hsl(240,100%,50%) }
Web page title
index.html
CSS rocks!
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HSL/HSLA COLORS
p { color: hsla(240,100%,50%,0.5) }
Alpha

(transparency)
1
0
With this code all paragraphs are shown in blue with 50% transparency.
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
HSL/HSLA COLORS
<body>
<p>CSS rocks!</p>
</body>
p { color: hsla(240,100%,50%,0.5) }
Web page title
index.html
CSS rocks!
in a
ROCKET
TOOLS
~ ~ ~
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: CSS PEEPER
Inspect a color palette used on a website.
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: COLOR CONVERTER
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: IMPALETTE
Find the most dominant color in an image
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: MATERIAL DESIGN PALETTE
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: BRANDS IN COLOURS
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: BRANDCOLORS
Learn front-end development at rocket speed
inarocket.com
by miguelsanchez.com
YOU CAN CONTINUE THIS COURSE FOR FREE ON
+ READY TO USE CODE
+ QUIZZES
+ FREE UPDATES
We respect your time

No more blah blah videos. Just straight to
the point slides with relevant information.
Ready to use code

Real code you can just copy and paste into
your real projects.
Step by step guides

Clear and concise steps to build real use
solutions. No missed points.
Learn front-end development at rocket speed
inarocket.com
IN A ROCKET
Learn front-end development at rocket speed
CSS CSS FUNDAMENTALS
Color

More Related Content

Similar to 15- Learn CSS Fundamentals / Color (20)

PDF
Css ejemplos y codigo 1
FREDY GÓMEZ
 
PDF
Lesson 02
Gene Babon
 
PDF
CSS3 cores e transparencia
gabrielaspinola
 
PPTX
Unit 2 Internet and web technology CSS report
ajaysahusistec
 
PPSX
Introduction to css
Evolution Network
 
PDF
11- Learn CSS Fundamentals / Combinators
In a Rocket
 
PPTX
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
IorlahaSamuel1
 
PPTX
HTML-CSS-QUARTER4 COMPUTER PROGRAMMING SSC
300179
 
PDF
Web Development 2 (HTML & CSS)
ghayour abbas
 
PPTX
Module 2 (1). .pptx
RiddhikaTripathi
 
PPTX
Chapter 13: Colors and Backgrounds
Steve Guinan
 
PDF
12- Learn CSS Fundamentals / Mix & group
In a Rocket
 
PPTX
cascading style sheet(css).pptx
SuhaibKhan62
 
PPTX
Colors In CSS3
Lea Verou
 
PPTX
Unit - 3 CSS(Cascading Style Sheet).pptx
kushwahanitesh592
 
PDF
16- Learn CSS Fundamentals / Background
In a Rocket
 
PPTX
CSS1.pptx
HarshitKoshta2
 
PPTX
WEB TECHNOLOGY Unit-2.pptx
karthiksmart21
 
PDF
14- Learn CSS Fundamentals / Inheritance
In a Rocket
 
PDF
Lecture16 ie321 dr_atifshahzad_css
Atif Shahzad
 
Css ejemplos y codigo 1
FREDY GÓMEZ
 
Lesson 02
Gene Babon
 
CSS3 cores e transparencia
gabrielaspinola
 
Unit 2 Internet and web technology CSS report
ajaysahusistec
 
Introduction to css
Evolution Network
 
11- Learn CSS Fundamentals / Combinators
In a Rocket
 
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
IorlahaSamuel1
 
HTML-CSS-QUARTER4 COMPUTER PROGRAMMING SSC
300179
 
Web Development 2 (HTML & CSS)
ghayour abbas
 
Module 2 (1). .pptx
RiddhikaTripathi
 
Chapter 13: Colors and Backgrounds
Steve Guinan
 
12- Learn CSS Fundamentals / Mix & group
In a Rocket
 
cascading style sheet(css).pptx
SuhaibKhan62
 
Colors In CSS3
Lea Verou
 
Unit - 3 CSS(Cascading Style Sheet).pptx
kushwahanitesh592
 
16- Learn CSS Fundamentals / Background
In a Rocket
 
CSS1.pptx
HarshitKoshta2
 
WEB TECHNOLOGY Unit-2.pptx
karthiksmart21
 
14- Learn CSS Fundamentals / Inheritance
In a Rocket
 
Lecture16 ie321 dr_atifshahzad_css
Atif Shahzad
 

More from In a Rocket (10)

PDF
3- Learn Flexbox & CSS Grid / Container & items
In a Rocket
 
PDF
2- Learn Flexbox & CSS Grid / Context
In a Rocket
 
PDF
1- Learn Flexbox & CSS Grid / Environment setup
In a Rocket
 
PDF
17- Learn CSS Fundamentals / Units
In a Rocket
 
PDF
10- Learn CSS Fundamentals / Pseudo-elements
In a Rocket
 
PDF
8- Learn CSS Fundamentals / Attribute selectors
In a Rocket
 
PDF
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
PDF
1- Learn HTML Fundamentals / Start in 5 Minutes
In a Rocket
 
PDF
Learn SUIT: CSS Naming Convention
In a Rocket
 
PDF
Learn BEM: CSS Naming Convention
In a Rocket
 
3- Learn Flexbox & CSS Grid / Container & items
In a Rocket
 
2- Learn Flexbox & CSS Grid / Context
In a Rocket
 
1- Learn Flexbox & CSS Grid / Environment setup
In a Rocket
 
17- Learn CSS Fundamentals / Units
In a Rocket
 
10- Learn CSS Fundamentals / Pseudo-elements
In a Rocket
 
8- Learn CSS Fundamentals / Attribute selectors
In a Rocket
 
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
1- Learn HTML Fundamentals / Start in 5 Minutes
In a Rocket
 
Learn SUIT: CSS Naming Convention
In a Rocket
 
Learn BEM: CSS Naming Convention
In a Rocket
 
Ad

Recently uploaded (20)

PPTX
原版一样(ANU毕业证书)澳洲澳大利亚国立大学毕业证在线购买
Taqyea
 
PDF
Transmission Control Protocol (TCP) and Starlink
APNIC
 
PDF
Slides: Eco Economic Epochs for The World Game (s) pdf
Steven McGee
 
PPTX
BitRecover OST to PST Converter Software
antoniogosling01
 
PPTX
Q1 English3 Week5 [email protected]
JenniferCawaling1
 
PDF
The Convergence of Threat Behaviors Across Intrusions
Joe Slowik
 
PDF
What Is Google Chrome? Fast & Secure Web Browser Guide
hgfdsqetuiplmnvcz43
 
PDF
Google Chrome vs Other Browsers: Why Users Still Prefer It.pdf
hgfdsqetuiplmnvcz43
 
PPTX
The ARUBA Kind of new Proposal Umum .pptx
andiwarneri
 
PDF
Materi tentang From Digital Economy to Fintech.pdf
Abdul Hakim
 
PDF
I Want to join occult brotherhood for money ritual#((+2347089754903))
haragonoccult
 
PDF
BroadLink Cloud Service introduction.pdf
DevendraDwivdi1
 
PDF
Download Google Chrome for Fast and Secure Web Browsing Experience
hgfdsqetuiplmnvcz43
 
PDF
03 Internal Analysis Strategik Manajemen.pdf
AhmadRifaldhi
 
PPTX
My Mother At 66! (2).pptx00000000000000000000000000000
vedapattisiddharth
 
PDF
Beginning-Laravel-Build-Websites-with-Laravel-5.8-by-Sanjib-Sinha-z-lib.org.pdf
TagumLibuganonRiverB
 
PPTX
原版一样(ISM毕业证书)德国多特蒙德国际管理学院毕业证多少钱
taqyed
 
PPT
Almos Entirely Correct Mixing with Apps to Voting
gapati2964
 
PDF
B M Mostofa Kamal Al-Azad [Document & Localization Expert]
Mostofa Kamal Al-Azad
 
PDF
web application development company in bangalore.pdf
https://dkpractice.co.in/seo.html tech
 
原版一样(ANU毕业证书)澳洲澳大利亚国立大学毕业证在线购买
Taqyea
 
Transmission Control Protocol (TCP) and Starlink
APNIC
 
Slides: Eco Economic Epochs for The World Game (s) pdf
Steven McGee
 
BitRecover OST to PST Converter Software
antoniogosling01
 
The Convergence of Threat Behaviors Across Intrusions
Joe Slowik
 
What Is Google Chrome? Fast & Secure Web Browser Guide
hgfdsqetuiplmnvcz43
 
Google Chrome vs Other Browsers: Why Users Still Prefer It.pdf
hgfdsqetuiplmnvcz43
 
The ARUBA Kind of new Proposal Umum .pptx
andiwarneri
 
Materi tentang From Digital Economy to Fintech.pdf
Abdul Hakim
 
I Want to join occult brotherhood for money ritual#((+2347089754903))
haragonoccult
 
BroadLink Cloud Service introduction.pdf
DevendraDwivdi1
 
Download Google Chrome for Fast and Secure Web Browsing Experience
hgfdsqetuiplmnvcz43
 
03 Internal Analysis Strategik Manajemen.pdf
AhmadRifaldhi
 
My Mother At 66! (2).pptx00000000000000000000000000000
vedapattisiddharth
 
Beginning-Laravel-Build-Websites-with-Laravel-5.8-by-Sanjib-Sinha-z-lib.org.pdf
TagumLibuganonRiverB
 
原版一样(ISM毕业证书)德国多特蒙德国际管理学院毕业证多少钱
taqyed
 
Almos Entirely Correct Mixing with Apps to Voting
gapati2964
 
B M Mostofa Kamal Al-Azad [Document & Localization Expert]
Mostofa Kamal Al-Azad
 
web application development company in bangalore.pdf
https://dkpractice.co.in/seo.html tech
 
Ad

15- Learn CSS Fundamentals / Color

  • 1. IN A ROCKET Learn front-end development at rocket speed CSS CSS FUNDAMENTALS Color
  • 2. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com NAMED COLORS With this code all paragraphs are shown in green. The color property sets the foreground color of an element's text content, and its decorations. p { color: green }
  • 3. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS NAMED
 COLORS HSL/HSLA COLORS RGB/RGBA COLORS
  • 4. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com NAMED COLORS Pink Hex RGB Red Hex RGB Orange Hex RGB Yellow Hex RGB White Hex RGB Gray & black Hex RGB Green Hex RGB
  • 5. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com NAMED COLORS Blue Hex RGB Purple Hex RGBCyan Hex RGB Brown Hex RGB
  • 6. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser NAMED COLORS <body> <p>CSS rocks!</p> </body> p { color: red; } Web page title index.html CSS rocks!
  • 7. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS NAMED
 COLORS HSL/HSLA COLORS RGB/RGBA COLORS
  • 8. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS p { color: #000000 } Red Green Blue
  • 9. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS # F E D C B A 9 8 7 6 5 4 3 2 1 0 F E D C B A 9 8 7 6 5 4 3 2 1 0 F E D C B A 9 8 7 6 5 4 3 2 1 0 RED GREEN BLUE
  • 10. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS F E D C B A 9 8 7 6 5 4 3 2 1 0 # RED F E D C B A 9 8 7 6 5 4 3 2 1 0 GREEN F E D C B A 9 8 7 6 5 4 3 2 1 0 BLUE = #ff0000
  • 11. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS F E D C B A 9 8 7 6 5 4 3 2 1 0 # RED F E D C B A 9 8 7 6 5 4 3 2 1 0 GREEN F E D C B A 9 8 7 6 5 4 3 2 1 0 BLUE = #00ff00
  • 12. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS F E D C B A 9 8 7 6 5 4 3 2 1 0 # RED F E D C B A 9 8 7 6 5 4 3 2 1 0 GREEN F E D C B A 9 8 7 6 5 4 3 2 1 0 BLUE = #0000ff
  • 13. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS #000000 #000 #ffffff #fff #ff0000 #f00 #00ff00 #0f0 #0000ff #00f
  • 14. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser HEX COLORS <body> <p>CSS rocks!</p> </body> p { color: #f00; } Web page title index.html CSS rocks!
  • 15. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com GAME: GUESS THE COLOR
  • 16. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS NAMED
 COLORS HSL/HSLA COLORS RGB/RGBA COLORS
  • 17. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com RGB / RGBA COLORS p { color: rgb(0,0,255) } Red Green Blue 255 0 255 0 255 0 With this code all paragraphs are shown in blue.
  • 18. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com RGB / RGBA COLORS rgb(0,0,0) rgb(255,255,255) rgb(255,0,0) rgb(0,255,0) rgb(0,0,255)
  • 19. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser RGB / RGBA COLORS <body> <p>CSS rocks!</p> </body> p { color: rgb(0,0,255) } Web page title index.html CSS rocks!
  • 20. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com RGB / RGBA COLORS p { color: rgba(0,0,255,0.5) } Alpha
 (transparency) 1 0 With this code all paragraphs are shown in blue with 50% transparency.
  • 21. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser RGB / RGBA COLORS <body> <p>CSS rocks!</p> </body> p { color: rgba(0,0,255,0.5) } Web page title index.html CSS rocks!
  • 22. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HEX COLORS NAMED
 COLORS HSL/HSLA COLORS RGB/RGBA COLORS
  • 23. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HSL/HSLA COLORS p { color: hsl(240,100%,50%) } Hue Saturation Lightness 0 360
  • 24. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HSL/HSLA COLORS hsl(0,0%,0%) hsl(0,0%,100%) hsl(0,100%,50%) hsl(120,100%,50%) hsl(240,100%,50%)
  • 25. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser HSL/HSLA COLORS <body> <p>CSS rocks!</p> </body> p { color: hsl(240,100%,50%) } Web page title index.html CSS rocks!
  • 26. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HSL/HSLA COLORS p { color: hsla(240,100%,50%,0.5) } Alpha
 (transparency) 1 0 With this code all paragraphs are shown in blue with 50% transparency.
  • 27. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser HSL/HSLA COLORS <body> <p>CSS rocks!</p> </body> p { color: hsla(240,100%,50%,0.5) } Web page title index.html CSS rocks!
  • 29. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: CSS PEEPER Inspect a color palette used on a website.
  • 30. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: COLOR CONVERTER
  • 31. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: IMPALETTE Find the most dominant color in an image
  • 32. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: MATERIAL DESIGN PALETTE
  • 33. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: BRANDS IN COLOURS
  • 34. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: BRANDCOLORS
  • 35. Learn front-end development at rocket speed inarocket.com by miguelsanchez.com YOU CAN CONTINUE THIS COURSE FOR FREE ON + READY TO USE CODE + QUIZZES + FREE UPDATES
  • 36. We respect your time
 No more blah blah videos. Just straight to the point slides with relevant information. Ready to use code
 Real code you can just copy and paste into your real projects. Step by step guides
 Clear and concise steps to build real use solutions. No missed points. Learn front-end development at rocket speed inarocket.com
  • 37. IN A ROCKET Learn front-end development at rocket speed CSS CSS FUNDAMENTALS Color