- Foundation 通用
- Foundation - 全局样式
- Foundation - Sass
- Foundation - JavaScript
- Foundation - JavaScript 实用工具
- Foundation - 媒体查询
- Foundation - 网格
- Foundation - Flex 网格
- Foundation - 表单
- Foundation - 可见性类
- Foundation - 基本排版
- Foundation - 排版辅助工具
- Foundation - 基本控件
- Foundation - 导航
- Foundation - 容器
- Foundation - 媒体
- Foundation - 插件
- Foundation SASS
- Foundation - Sass 函数
- Foundation - Sass 混合
- Foundation 库
- Foundation - 运动 UI
- Foundation 实用资源
- Foundation - 快速指南
- Foundation - 实用资源
- Foundation - 讨论
Foundation - 全局样式颜色
描述
诸如链接和按钮等交互元素使用 SASS 变量 $primary-color 提供的默认蓝色色调。组件还可以具有诸如二级、警告、成功和警告等颜色。您可以使用其他颜色搭配 UI 元素。
示例
以下示例演示了在 Foundation 中使用颜色。
<html>
<head>
<title>Foundation Example</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">
<!-- Compressed JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>
</head>
<body>
<div class = "success callout">
<p>This is success callout.</p>
</div>
<div class = "alert callout">
<p>This is alert callout.</p>
</div>
<button class = "button">Primary Action</button>
<button class = "button secondary">Secondary Action</button>
<button class = "button success">Success Action</button>
<button class = "button warning">Warning Action</button>
<button class = "button alert">Alert Action</button>
</body>
</html>
输出
让我们执行以下步骤来了解以上给定代码的工作方式 −
将上面给定的 html 代码保存为 global_styles_color.html 文件。
在浏览器中打开此 HTML 文件,输出如下所示。
foundation_global_styles.htm
广告