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)