Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Color Example</title> <style> div { padding: 20px; margin: 20px; } .textColor { color: #87CEEB; background-color: white; } .borderColor { border-width: 3px; border-style: solid; border-color: #87CEEB; } .backgroundColor { background-color: #87CEEB; color: white; } .backgroundGradient { background: linear-gradient(to bottom, white, #87CEEB); color: white; } .lighterColor { background: #ABDCF1; } .darkerColor { background: #5E90A4; } .lighterColor > p, .darkerColor > p { color: black; background: white; padding: 3px; border-radius: 3px; display: inline-block; } </style> <div class="textColor borderColor"> <h1>Testing Text in #87CEEB</h1> <p>This text has been styled with a color of #87CEEB.</p> <p>The border is also uses #87CEEB.</p> <p>Try changing the values to see how it affects the output.</p> <p>And see this color applied to the <a target="_blank" href="/html/codes/color/color-tester.cfm?hexColor=87CEEB">Color Tester</a>.</p> </div> <div class="backgroundColor"> <h1>Testing a background color of #87CEEB.</h1> <p>This has a background color of #87CEEB.</p> <p>Try changing the values to see how it affects the output.</p> </div> <div class="backgroundGradient"> <h1>Testing a background gradient.</h1> <p>This has a background gradient going between white and #87CEEB.</p> <p>Try changing the values to see how it affects the output.</p> </div> <div class="lighterColor"> <p>Lighter color: #ABDCF1</p> </div> <div class="darkerColor"> <p>Darker color: #5E90A4</p> </div>