Ver código fonte

Disabled useless color transformations into hex values

Taddeus Kroes 11 anos atrás
pai
commit
a36e732191
1 arquivos alterados com 0 adições e 3 exclusões
  1. 0 3
      color.ml

+ 0 - 3
color.ml

@@ -13,11 +13,8 @@ let clip = function
   | value -> value
 
 let rec short = function
-  | Ident "aqua"      -> Hexcolor "0ff"
   | Ident "black"     -> Hexcolor "000"
-  | Ident "blue"      -> Hexcolor "00f"
   | Ident "fuchsia"   -> Hexcolor "f0f"
-  | Ident "lime"      -> Hexcolor "0f0"
   | Ident "white"     -> Hexcolor "fff"
   | Ident "yellow"    -> Hexcolor "ff0"
   | Hexcolor "808080" -> Ident "gray"