NLKNguyen / papercolor-theme

:art: Light & Dark Vim color schemes inspired by Google's Material Design

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inconsistent CSS property name color

passerbyxp opened this issue · comments

This is what I got from papercolor (left) vs vim-unicon (right, which claims to have no language specific syntax):

versus

As you can see, not all property names are using the same color, and transparent is highlighted like a property name, not a value.
(12.5em got highlighted into two different tokens is a nice feature, though.)

Is it possible to make papercolor work better on CSS?

vim-css3-syntax and vim-css-color are used in the above screenshot, and also this file segment:

body
{
	font-size:16px;
	font-family:"微软雅黑","微軟雅黑","Microsoft YaHei","Source Han Sans","Noto Sans","WenQuanYi Micro Hei","文泉驿微米黑",sans-serif;
	padding:0.5em;
	background-color:#FAFAFA;/* grey 50 */
}
body.toolbar
{
	padding-left:2.5em;
}
body.toolbar:not(.manual-navigator)
{
	padding-left:12.5em;
}
.bg-trans
{
	background-color:transparent;
}
.nowrap
{
	white-space:nowrap;
}
.pre
{
	white-space:pre;
}
.pre-wrap
{
	white-space:pre-wrap;
}
.text-ellipsis
{
	overflow:hidden;
	text-overflow:ellipsis;
}
.word-break
{
	word-wrap:break-word;
	word-break:break-all;
}
.over-hold
{
	overflow:auto;
}
.over-hide
{
	overflow:hidden;
}
.over-show
{
	overflow:visible;
}
.bg-primary
{
	background-color:#2196F3;
}