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)

14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance
In a Rocket
 
SASS Lecture
SASS Lecture SASS Lecture
SASS Lecture
Adnan Arshad
 
CSS Extenders
CSS ExtendersCSS Extenders
CSS Extenders
Idan Gazit
 
CSS
CSSCSS
CSS
Deepa Lakshmi
 
Thuray css3
Thuray css3Thuray css3
Thuray css3
Amrinder SINGH
 
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Tom Hapgood
 
Learn Sass and Compass quick
Learn Sass and Compass quickLearn Sass and Compass quick
Learn Sass and Compass quick
Billy Shih
 
Sass & Compass (Barcamp Stuttgart 2012)
Sass & Compass (Barcamp Stuttgart 2012)Sass & Compass (Barcamp Stuttgart 2012)
Sass & Compass (Barcamp Stuttgart 2012)
emrox
 
CSS3 is Not Magic Pixie Dust
CSS3 is Not Magic Pixie DustCSS3 is Not Magic Pixie Dust
CSS3 is Not Magic Pixie Dust
Kyle Adams
 
Fasten RWD Development with Sass
Fasten RWD Development with SassFasten RWD Development with Sass
Fasten RWD Development with Sass
Sven Wolfermann
 
Big Design Conference: CSS3
Big Design Conference: CSS3 Big Design Conference: CSS3
Big Design Conference: CSS3
Wynn Netherland
 
Wrangling the CSS Beast with Sass
Wrangling the CSS Beast  with SassWrangling the CSS Beast  with Sass
Wrangling the CSS Beast with Sass
Rob Friesel
 
LIS3353 SP12 Week 13
LIS3353 SP12 Week 13LIS3353 SP12 Week 13
LIS3353 SP12 Week 13
Amanda Case
 
Work and play with SASS & Compass
Work and play with SASS & CompassWork and play with SASS & Compass
Work and play with SASS & Compass
Andreas Dantz
 
Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"
Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"
Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"
bentleyhoke
 
Advance Web Designing - Lecture 02 / 30
Advance Web Designing - Lecture 02 / 30Advance Web Designing - Lecture 02 / 30
Advance Web Designing - Lecture 02 / 30
alishanvr
 
Doing More With Less
Doing More With LessDoing More With Less
Doing More With Less
David Engel
 
11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators
In a Rocket
 
Compass, Sass, and the Enlightened CSS Developer
Compass, Sass, and the Enlightened CSS DeveloperCompass, Sass, and the Enlightened CSS Developer
Compass, Sass, and the Enlightened CSS Developer
Wynn Netherland
 
CSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassCSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & Compass
Lucien Lee
 
14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance
In a Rocket
 
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Tom Hapgood
 
Learn Sass and Compass quick
Learn Sass and Compass quickLearn Sass and Compass quick
Learn Sass and Compass quick
Billy Shih
 
Sass & Compass (Barcamp Stuttgart 2012)
Sass & Compass (Barcamp Stuttgart 2012)Sass & Compass (Barcamp Stuttgart 2012)
Sass & Compass (Barcamp Stuttgart 2012)
emrox
 
CSS3 is Not Magic Pixie Dust
CSS3 is Not Magic Pixie DustCSS3 is Not Magic Pixie Dust
CSS3 is Not Magic Pixie Dust
Kyle Adams
 
Fasten RWD Development with Sass
Fasten RWD Development with SassFasten RWD Development with Sass
Fasten RWD Development with Sass
Sven Wolfermann
 
Big Design Conference: CSS3
Big Design Conference: CSS3 Big Design Conference: CSS3
Big Design Conference: CSS3
Wynn Netherland
 
Wrangling the CSS Beast with Sass
Wrangling the CSS Beast  with SassWrangling the CSS Beast  with Sass
Wrangling the CSS Beast with Sass
Rob Friesel
 
LIS3353 SP12 Week 13
LIS3353 SP12 Week 13LIS3353 SP12 Week 13
LIS3353 SP12 Week 13
Amanda Case
 
Work and play with SASS & Compass
Work and play with SASS & CompassWork and play with SASS & Compass
Work and play with SASS & Compass
Andreas Dantz
 
Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"
Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"
Brian Hoke: WordCamp Toronto 2014 Presentation "Sass & WordPress"
bentleyhoke
 
Advance Web Designing - Lecture 02 / 30
Advance Web Designing - Lecture 02 / 30Advance Web Designing - Lecture 02 / 30
Advance Web Designing - Lecture 02 / 30
alishanvr
 
Doing More With Less
Doing More With LessDoing More With Less
Doing More With Less
David Engel
 
11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators
In a Rocket
 
Compass, Sass, and the Enlightened CSS Developer
Compass, Sass, and the Enlightened CSS DeveloperCompass, Sass, and the Enlightened CSS Developer
Compass, Sass, and the Enlightened CSS Developer
Wynn Netherland
 
CSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassCSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & Compass
Lucien Lee
 

More from In a Rocket (12)

3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items
In a Rocket
 
2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context
In a Rocket
 
1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup
In a Rocket
 
17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units
In a Rocket
 
16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background
In a Rocket
 
12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group
In a Rocket
 
10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements
In a Rocket
 
8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors
In a Rocket
 
2- Learn HTML Fundamentals / Text Formatting
2- Learn HTML Fundamentals / Text Formatting2- Learn HTML Fundamentals / Text Formatting
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
1- Learn HTML Fundamentals / Start in 5 Minutes
1- Learn HTML Fundamentals / Start in 5 Minutes1- Learn HTML Fundamentals / Start in 5 Minutes
1- Learn HTML Fundamentals / Start in 5 Minutes
In a Rocket
 
Learn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming ConventionLearn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming Convention
In a Rocket
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
In a Rocket
 
3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items
In a Rocket
 
2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context
In a Rocket
 
1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup
In a Rocket
 
17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units
In a Rocket
 
16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background
In a Rocket
 
12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group
In a Rocket
 
10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements
In a Rocket
 
8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors
In a Rocket
 
2- Learn HTML Fundamentals / Text Formatting
2- Learn HTML Fundamentals / Text Formatting2- Learn HTML Fundamentals / Text Formatting
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
1- Learn HTML Fundamentals / Start in 5 Minutes
1- Learn HTML Fundamentals / Start in 5 Minutes1- Learn HTML Fundamentals / Start in 5 Minutes
1- Learn HTML Fundamentals / Start in 5 Minutes
In a Rocket
 
Learn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming ConventionLearn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming Convention
In a Rocket
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
In a Rocket
 
Ad

Recently uploaded (17)

HPC_Course_Presentation_No_Images included.pptx
HPC_Course_Presentation_No_Images included.pptxHPC_Course_Presentation_No_Images included.pptx
HPC_Course_Presentation_No_Images included.pptx
naziaahmadnm
 
原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理
原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理
原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理
Taqyea
 
Transport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptx
Transport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptxTransport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptx
Transport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptx
ssuser80a7e81
 
Networking concepts from zero to hero that covers the security aspects
Networking concepts from zero to hero that covers the security aspectsNetworking concepts from zero to hero that covers the security aspects
Networking concepts from zero to hero that covers the security aspects
amansinght675
 
all Practical Project LAST summary note.docx
all Practical Project LAST summary note.docxall Practical Project LAST summary note.docx
all Practical Project LAST summary note.docx
seidjemal94
 
Cloud VPS Provider in India: The Best Hosting Solution for Your Business
Cloud VPS Provider in India: The Best Hosting Solution for Your BusinessCloud VPS Provider in India: The Best Hosting Solution for Your Business
Cloud VPS Provider in India: The Best Hosting Solution for Your Business
DanaJohnson510230
 
basic to advance network security concepts
basic to advance network security conceptsbasic to advance network security concepts
basic to advance network security concepts
amansinght675
 
Presentation About The Buttons | Selma SALTIK
Presentation About The Buttons | Selma SALTIKPresentation About The Buttons | Selma SALTIK
Presentation About The Buttons | Selma SALTIK
SELMA SALTIK
 
Essential Tech Stack for Effective Shopify Dropshipping Integration.pdf
Essential Tech Stack for Effective Shopify Dropshipping Integration.pdfEssential Tech Stack for Effective Shopify Dropshipping Integration.pdf
Essential Tech Stack for Effective Shopify Dropshipping Integration.pdf
CartCoders
 
OSI_Security_Architecture Computer Science.pptx
OSI_Security_Architecture Computer Science.pptxOSI_Security_Architecture Computer Science.pptx
OSI_Security_Architecture Computer Science.pptx
faizanaseem873
 
5 Reasons cheap WordPress hosting is costing you more | Reversed Out
5 Reasons cheap WordPress hosting is costing you more | Reversed Out5 Reasons cheap WordPress hosting is costing you more | Reversed Out
5 Reasons cheap WordPress hosting is costing you more | Reversed Out
Reversed Out Creative
 
10 Latest Technologies and Their Benefits to End.pptx
10 Latest Technologies and Their Benefits to End.pptx10 Latest Technologies and Their Benefits to End.pptx
10 Latest Technologies and Their Benefits to End.pptx
EphraimOOghodero
 
Networking_Essentials_version_3.0_-_Module_7.pptx
Networking_Essentials_version_3.0_-_Module_7.pptxNetworking_Essentials_version_3.0_-_Module_7.pptx
Networking_Essentials_version_3.0_-_Module_7.pptx
elestirmen
 
Frontier Unlimited Internet Setup Step-by-Step Guide.pdf
Frontier Unlimited Internet Setup Step-by-Step Guide.pdfFrontier Unlimited Internet Setup Step-by-Step Guide.pdf
Frontier Unlimited Internet Setup Step-by-Step Guide.pdf
Internet Bundle Now
 
ARTIFICIAL INTELLIGENCE.pptx2565567765676
ARTIFICIAL INTELLIGENCE.pptx2565567765676ARTIFICIAL INTELLIGENCE.pptx2565567765676
ARTIFICIAL INTELLIGENCE.pptx2565567765676
areebaimtiazpmas
 
AI REPLACING HUMANS /FATHER OF AI/BIRTH OF AI
AI REPLACING HUMANS /FATHER OF AI/BIRTH OF AIAI REPLACING HUMANS /FATHER OF AI/BIRTH OF AI
AI REPLACING HUMANS /FATHER OF AI/BIRTH OF AI
skdav34
 
How to Make Money as a Cam Model – Tips, Tools & Real Talk
How to Make Money as a Cam Model – Tips, Tools & Real TalkHow to Make Money as a Cam Model – Tips, Tools & Real Talk
How to Make Money as a Cam Model – Tips, Tools & Real Talk
Cam Sites Expert
 
HPC_Course_Presentation_No_Images included.pptx
HPC_Course_Presentation_No_Images included.pptxHPC_Course_Presentation_No_Images included.pptx
HPC_Course_Presentation_No_Images included.pptx
naziaahmadnm
 
原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理
原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理
原版西班牙马拉加大学毕业证(UMA毕业证书)如何办理
Taqyea
 
Transport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptx
Transport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptxTransport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptx
Transport Conjjjjjjjjjjjjjjjjjjjjjjjsulting by Slidesgo.pptx
ssuser80a7e81
 
Networking concepts from zero to hero that covers the security aspects
Networking concepts from zero to hero that covers the security aspectsNetworking concepts from zero to hero that covers the security aspects
Networking concepts from zero to hero that covers the security aspects
amansinght675
 
all Practical Project LAST summary note.docx
all Practical Project LAST summary note.docxall Practical Project LAST summary note.docx
all Practical Project LAST summary note.docx
seidjemal94
 
Cloud VPS Provider in India: The Best Hosting Solution for Your Business
Cloud VPS Provider in India: The Best Hosting Solution for Your BusinessCloud VPS Provider in India: The Best Hosting Solution for Your Business
Cloud VPS Provider in India: The Best Hosting Solution for Your Business
DanaJohnson510230
 
basic to advance network security concepts
basic to advance network security conceptsbasic to advance network security concepts
basic to advance network security concepts
amansinght675
 
Presentation About The Buttons | Selma SALTIK
Presentation About The Buttons | Selma SALTIKPresentation About The Buttons | Selma SALTIK
Presentation About The Buttons | Selma SALTIK
SELMA SALTIK
 
Essential Tech Stack for Effective Shopify Dropshipping Integration.pdf
Essential Tech Stack for Effective Shopify Dropshipping Integration.pdfEssential Tech Stack for Effective Shopify Dropshipping Integration.pdf
Essential Tech Stack for Effective Shopify Dropshipping Integration.pdf
CartCoders
 
OSI_Security_Architecture Computer Science.pptx
OSI_Security_Architecture Computer Science.pptxOSI_Security_Architecture Computer Science.pptx
OSI_Security_Architecture Computer Science.pptx
faizanaseem873
 
5 Reasons cheap WordPress hosting is costing you more | Reversed Out
5 Reasons cheap WordPress hosting is costing you more | Reversed Out5 Reasons cheap WordPress hosting is costing you more | Reversed Out
5 Reasons cheap WordPress hosting is costing you more | Reversed Out
Reversed Out Creative
 
10 Latest Technologies and Their Benefits to End.pptx
10 Latest Technologies and Their Benefits to End.pptx10 Latest Technologies and Their Benefits to End.pptx
10 Latest Technologies and Their Benefits to End.pptx
EphraimOOghodero
 
Networking_Essentials_version_3.0_-_Module_7.pptx
Networking_Essentials_version_3.0_-_Module_7.pptxNetworking_Essentials_version_3.0_-_Module_7.pptx
Networking_Essentials_version_3.0_-_Module_7.pptx
elestirmen
 
Frontier Unlimited Internet Setup Step-by-Step Guide.pdf
Frontier Unlimited Internet Setup Step-by-Step Guide.pdfFrontier Unlimited Internet Setup Step-by-Step Guide.pdf
Frontier Unlimited Internet Setup Step-by-Step Guide.pdf
Internet Bundle Now
 
ARTIFICIAL INTELLIGENCE.pptx2565567765676
ARTIFICIAL INTELLIGENCE.pptx2565567765676ARTIFICIAL INTELLIGENCE.pptx2565567765676
ARTIFICIAL INTELLIGENCE.pptx2565567765676
areebaimtiazpmas
 
AI REPLACING HUMANS /FATHER OF AI/BIRTH OF AI
AI REPLACING HUMANS /FATHER OF AI/BIRTH OF AIAI REPLACING HUMANS /FATHER OF AI/BIRTH OF AI
AI REPLACING HUMANS /FATHER OF AI/BIRTH OF AI
skdav34
 
How to Make Money as a Cam Model – Tips, Tools & Real Talk
How to Make Money as a Cam Model – Tips, Tools & Real TalkHow to Make Money as a Cam Model – Tips, Tools & Real Talk
How to Make Money as a Cam Model – Tips, Tools & Real Talk
Cam Sites Expert
 
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