Change color depending on background color with Sass(使用 Sass 根据背景颜色更改颜色)
问题描述
我想设置一些 sass 颜色规则,它们会自动为我选择字体颜色变量.我希望文本颜色取决于父 div 的背景颜色是什么颜色.
I want to set up some sass color rules that will automatically choose the font color variable for me. I want the text color to be dependent on what color the background color of the parent div is.
如果
div {background-color: #000; }
那么
div p { color: #fff; }
如何使用 sass 实现这一点?
How can this be achieved with sass?
推荐答案
background-color
可以使用lightness()
函数来判断颜色
值,如下:
You could use lightness()
function for the background-color
to determine the color
value, as follows:
@function set-color($color) {
@if (lightness($color) > 40) {
@return #000;
}
@else {
@return #FFF;
}
}
然后使用上面的函数如下:
Then use the above function as below:
div { background-color: black; // Or whatever else }
div p { color: set-color(black); }
现场演示.
这篇关于使用 Sass 根据背景颜色更改颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Sass 根据背景颜色更改颜色
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01