From 4869f7464200cd7dd5e94b66647b9217e7a4b6d9 Mon Sep 17 00:00:00 2001 From: John (J5) Palmieri Date: Tue, 09 Jan 2007 20:25:51 +0000 Subject: add prelight on mouse enter to activity icons * prelight uses profile.get_color() --- (limited to 'shell/view/home/activitiesdonut.py') diff --git a/shell/view/home/activitiesdonut.py b/shell/view/home/activitiesdonut.py index 117fd28..4796a37 100644 --- a/shell/view/home/activitiesdonut.py +++ b/shell/view/home/activitiesdonut.py @@ -26,6 +26,8 @@ from sugar.graphics import colors from sugar.graphics import iconcolor from sugar import profile +# TODO: rgb_to_html and html_to_rgb are useful elsewhere +# we should put this in a common module def rgb_to_html(r, g, b): """ (r, g, b) tuple (in float format) -> #RRGGBB """ return '#%02x%02x%02x' % (int(r * 255), int(g * 255), int(b * 255)) -- cgit v0.9.1