CKEDITOR.tools.color should support new color syntaxes #4583
Labels
core
The issue is caused by the editor core code.
status:confirmed
An issue confirmed by the development team.
type:feature
A feature request.
Milestone
Type of report
Feature request
Provide description of the new feature
The newest version of CSS Colors specification defines new syntaxes for RGB and HSL colors – ones without commas as separators, e.g.
rgb( 0 20 87 / 10%)
is equivalent torgb( 0, 20, 87, 0.1 )
.Additionally
rgba
andhsla
functions are kept only for compatibility reasons as alpha channel is now supported directly inrgb
andhsl
functions. We do not support alpha channel inrgb
andhsl
.There is also new syntax for hex colors –
#RRGGBBAA
. We do not support it.The text was updated successfully, but these errors were encountered: