From f683a487d1f72ab8d8b6d9414830ff4c26fd921d Mon Sep 17 00:00:00 2001
From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com>
Date: Thu, 7 Feb 2019 20:31:58 +0530
Subject: [PATCH] Added solution to Learn about Tertiary Colors (#34360)
Update guide/english/certifications/responsive-web-design/applied-visual-design/learn-about-tertiary-colors/index.md
Co-Authored-By: thecodingaviator <34807532+thecodingaviator@users.noreply.github.com>
---
.../learn-about-tertiary-colors/index.md | 24 ++++++++++++++++---
1 file changed, 21 insertions(+), 3 deletions(-)
diff --git a/guide/english/certifications/responsive-web-design/applied-visual-design/learn-about-tertiary-colors/index.md b/guide/english/certifications/responsive-web-design/applied-visual-design/learn-about-tertiary-colors/index.md
index a048ea2e6e..f1d0ebe5ce 100644
--- a/guide/english/certifications/responsive-web-design/applied-visual-design/learn-about-tertiary-colors/index.md
+++ b/guide/english/certifications/responsive-web-design/applied-visual-design/learn-about-tertiary-colors/index.md
@@ -3,8 +3,26 @@ title: Learn about Tertiary Colors
---
## Learn about Tertiary Colors
-This is a stub. Help our community expand it.
+Tertiary colours are combinations of primary and secondary colours. There are six tertiary colors; red-orange, yellow-orange, yellow-green, blue-green, blue-violet, and red-violet.
-This quick style guide will help ensure your pull request gets accepted.
+They are made by full saturation of a primary colour with half saturation of a secondary colour with no other colours.
-
+### Solution
+
+```css
+.orange {
+ background-color: #FF7D00;
+}
+
+.cyan {
+ background-color: #00FFFF;
+}
+
+.raspberry {
+ background-color: #FF007D;
+}
+```
+
+### References
+
+* [Wikipedia](https://en.wikipedia.org/wiki/Tertiary_color)