- W3.CSS教程
- W3.CSS - 主页
- W3.CSS - 概述
- W3.CSS - 环境设置
- W3.CSS - 容器
- W3.CSS - 代码着色
- W3.CSS - 卡片
- W3.CSS - 响应式设计
- W3.CSS - 网格
- W3.CSS - 表单
- W3.CSS - 按钮
- W3.CSS - 工具提示
- W3.CSS - 模态对话框
- W3.CSS - 表格
- W3.CSS - 列表
- W3.CSS - 图像
- W3.CSS - 图标
- W3.CSS - 颜色
- W3.CSS - 导航
- W3.CSS - 实用程序
- W3.CSS 有用资源
- W3.CSS - 快速指南
- W3.CSS - 有用的资源
- W3.CSS - 讨论
W3.CSS - 颜色
W3.CSS 支持一组丰富的颜色类。这些颜色类别的灵感和开发考虑了营销、路标和便签中使用的颜色。
W3-红色
W3-粉色
w3-紫色
w3-深紫色
w3-靛蓝
w3-蓝色
w3-浅蓝色
w3-青色
w3-青色
w3-绿色
w3-浅绿色
w3-石灰
W3-卡其色
w3-黄色
w3-琥珀色
w3-橙色
w3-深橙色
w3-蓝灰色
w3-棕色
w3-浅灰色
W3-灰色
W3-深灰色
w3-黑色
颜色主题
W3.CSS 为使用其公共域主题 CSS 将主题应用到网站提供了出色的支持。下面给出了一些示例 -
先生。没有。 | CSS 名称和描述 |
---|---|
1 | w3-主题-indigo.css CSS 具有 Indigo 变体颜色 |
2 | w3-主题-red.css CSS 具有红色变体颜色 |
为了使用主题,请访问https://www.w3schools.com/w3css/w3css_downloads.asp下载所需的 CSS 文件。
例子
w3css_colors.htm
<html> <head> <title>The W3.CSS Color Themes</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://www.w3schools.com/lib/w3.css"> <link rel = "stylesheet" href = "css/w3-theme-red.css"> </head> <body class = "w3-container"> <h2>Color Theme Demo</h2> <hr/> <div class = "w3-card-4"> <div class = "w3-container w3-theme w3-card-2"> <h1>Red Colored Theme</h1> </div> <div class = "w3-container w3-text-theme"> <h2>w3-text-theme - Theme for Text</h2> </div> <ul class = "w3-ul w3-border-top"> <li class = "w3-theme-l5" style = "position:relative"> <a class = "w3-btn-floating-large w3-theme-action w3-right" style = "position:absolute;top:-28px;right:16px;">+</a> <p>Using w3-theme-l5 / w3-theme-light style</p> </li> <li class = "w3-theme-l4"><p>Using w3-theme-l4 style</p></li> <li class = "w3-theme-l3"><p>Using w3-theme-l3 style</p></li> <li class = "w3-theme-l2"><p>Using w3-theme-l2 style</p></li> <li class = "w3-theme-l1"><p>Using w3-theme-l1 style</p></li> <li class = "w3-theme"><p>Using w3-theme style</p></li> <li class = "w3-theme-d1"><p>Using w3-theme style</p></li> <li class = "w3-theme-d2"><p>Using w3-theme style</p></li> <li class = "w3-theme-d3"><p>Using w3-theme style</p></li> <li class = "w3-theme-d4"><p>Using w3-theme style</p></li> </ul> </div> </body> </html>
结果
验证结果。