0

我在决定我的网站的配色方案时遇到了麻烦,因为我已经选择了background-colorcolor但是链接在访问的不同状态下的外观、悬停等与我的主要颜色不协调。

我知道如何控制链接上的颜色:

a:link
{
    color: #66FF33;
}
a:visited
{
    color: #FF0000;
}
a:hover
{
    color: #FFFF66;
}
a:active
{
    color: #66FF33;
}

我的问题是在我的脑海中处理 6 种颜色,2 种主要颜色和 4 种用于链接的颜色,看看它们在我更改一种时是否会发生冲突等,我知道有很多网站可以帮助您选择配色方案,有没有哪个在其预览/生成 CSS 函数中考虑了访问、悬停等链接?

4

2 回答 2

1

我认为你应该只在网络浏览器中加载你试图弄乱的页面,并使用 Firebug 来改变你的 CSS 并测试不同的颜色。
为自己制作一个示例 HTML 页面,其中包含指向已访问和未访问站点的链接。添加一个包含单元格的表格,您可以更改颜色并在浏览器中使用它。

于 2013-04-06T16:18:04.910 回答
1
Choose colors that do not overlap themselves, and avoided as much as you can the too many colors, unless if this is the concept.
Webpages are often designed in 2-3 basic, contrasted or complementary colours. 
For starters, it is good to counsel websites that offer combinations but occasionally it is good to try and develop your own style.
Do not forget to research the well-designed pages on the internet,
as aesthetics is something dynamic.
The main thing is the content and the character of the site that will determine
and the aesthetics and color.
于 2013-04-06T16:20:37.110 回答