浏览代码

adding rgb color support

Matt Sparks 16 年之前
父节点
当前提交
9f6bb12b7d
共有 1 个文件被更改,包括 22 次插入1 次删除
  1. 22 1
      alphasign/colors.py

+ 22 - 1
alphasign/colors.py

@@ -28,4 +28,25 @@ RAINBOW_1 = "\x1C9"
 RAINBOW_2 = "\x1CA"
 COLOR_MIX = "\x1CB"
 AUTOCOLOR = "\x1CC"
-# TODO(ms): need support for RGB colors
+
+
+def rgb(rgb):
+  """
+  Create color constant for use in TEXT and STRING files.
+
+  :param rgb: 6-character hex string in form RRGGBB.
+  """
+  if len(rgb) and rgb[0] == "#":
+    rgb = rgb[1:]
+  return "\x1CZ%s" % rgb
+
+
+def shadow_rgb(rgb):
+  """
+  Create shadow color constant for use in TEXT and STRING files.
+
+  :param rgb: 6-character hex string in form RRGGBB.
+  """
+  if len(rgb) and rgb[0] == "#":
+    rgb = rgb[1:]
+  return "\x1CY%s" % rgb