Ensure correctly formatted color
This commit is contained in:
parent
a48fe93cc3
commit
c1efa0a266
@ -62,7 +62,7 @@ class RGBColor(object):
|
|||||||
int(self._b * 65535))
|
int(self._b * 65535))
|
||||||
|
|
||||||
def get_html(self):
|
def get_html(self):
|
||||||
return '#%x%x%x' % (self._r * 255, self._g * 255, self._b * 255)
|
return '#%02x%02x%02x' % (self._r * 255, self._g * 255, self._b * 255)
|
||||||
|
|
||||||
class HTMLColor(RGBColor):
|
class HTMLColor(RGBColor):
|
||||||
def __init__(self, html_color):
|
def __init__(self, html_color):
|
||||||
|
Loading…
Reference in New Issue
Block a user