pep8'd sugar3.graphics
This commit is contained in:
parent
51f07bba81
commit
edbc8f53b3
@ -66,12 +66,15 @@ class _ColorButton(Gtk.Button):
|
|||||||
# FIXME Drag and drop is not working, SL #3796
|
# FIXME Drag and drop is not working, SL #3796
|
||||||
if self._accept_drag:
|
if self._accept_drag:
|
||||||
self.drag_dest_set(Gtk.DestDefaults.MOTION |
|
self.drag_dest_set(Gtk.DestDefaults.MOTION |
|
||||||
Gtk.DestDefaults.HIGHLIGHT | Gtk.DestDefaults.DROP,
|
Gtk.DestDefaults.HIGHLIGHT |
|
||||||
[Gtk.TargetEntry.new('application/x-color', 0, 0)],
|
Gtk.DestDefaults.DROP,
|
||||||
|
[Gtk.TargetEntry.new(
|
||||||
|
'application/x-color', 0, 0)],
|
||||||
Gdk.DragAction.COPY)
|
Gdk.DragAction.COPY)
|
||||||
self.drag_source_set(Gdk.ModifierType.BUTTON1_MASK |
|
self.drag_source_set(Gdk.ModifierType.BUTTON1_MASK |
|
||||||
Gdk.ModifierType.BUTTON3_MASK,
|
Gdk.ModifierType.BUTTON3_MASK,
|
||||||
[Gtk.TargetEntry.new('application/x-color', 0, 0)],
|
[Gtk.TargetEntry.new(
|
||||||
|
'application/x-color', 0, 0)],
|
||||||
Gdk.DragAction.COPY)
|
Gdk.DragAction.COPY)
|
||||||
self.connect('drag_data_received', self.__drag_data_received_cb)
|
self.connect('drag_data_received', self.__drag_data_received_cb)
|
||||||
self.connect('drag_data_get', self.__drag_data_get_cb)
|
self.connect('drag_data_get', self.__drag_data_get_cb)
|
||||||
@ -214,7 +217,7 @@ class _ColorButton(Gtk.Button):
|
|||||||
self._color.blue, 65535)
|
self._color.blue, 65535)
|
||||||
selection_data.set(selection_data.target, 16, data)
|
selection_data.set(selection_data.target, 16, data)
|
||||||
|
|
||||||
def __drag_data_received_cb(self, widget, context, x, y, selection_data, \
|
def __drag_data_received_cb(self, widget, context, x, y, selection_data,
|
||||||
info, time):
|
info, time):
|
||||||
if len(selection_data.data) != 8:
|
if len(selection_data.data) != 8:
|
||||||
return
|
return
|
||||||
@ -406,7 +409,8 @@ def _add_accelerator(tool_button):
|
|||||||
keyval, mask = Gtk.accelerator_parse(tool_button.props.accelerator)
|
keyval, mask = Gtk.accelerator_parse(tool_button.props.accelerator)
|
||||||
# the accelerator needs to be set at the child, so the Gtk.AccelLabel
|
# the accelerator needs to be set at the child, so the Gtk.AccelLabel
|
||||||
# in the palette can pick it up.
|
# in the palette can pick it up.
|
||||||
tool_button.get_child().add_accelerator('clicked', accel_group, keyval, mask,
|
tool_button.get_child(
|
||||||
|
).add_accelerator('clicked', accel_group, keyval, mask,
|
||||||
Gtk.AccelFlags.LOCKED | Gtk.AccelFlags.VISIBLE)
|
Gtk.AccelFlags.LOCKED | Gtk.AccelFlags.VISIBLE)
|
||||||
|
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ class _IconBuffer(object):
|
|||||||
theme = Gtk.IconTheme.get_default()
|
theme = Gtk.IconTheme.get_default()
|
||||||
|
|
||||||
size = 50
|
size = 50
|
||||||
if self.width != None:
|
if self.width is not None:
|
||||||
size = self.width
|
size = self.width
|
||||||
|
|
||||||
info = theme.lookup_icon(self.icon_name, int(size), 0)
|
info = theme.lookup_icon(self.icon_name, int(size), 0)
|
||||||
@ -727,7 +727,8 @@ class CanvasIcon(EventIcon):
|
|||||||
|
|
||||||
def __button_press_event_cb(self, icon, event):
|
def __button_press_event_cb(self, icon, event):
|
||||||
if self.palette and not self.palette.is_up():
|
if self.palette and not self.palette.is_up():
|
||||||
self.set_state_flags(self.get_state_flags() | Gtk.StateFlags.ACTIVE,
|
self.set_state_flags(
|
||||||
|
self.get_state_flags() | Gtk.StateFlags.ACTIVE,
|
||||||
clear=True)
|
clear=True)
|
||||||
|
|
||||||
def __button_release_event_cb(self, icon, event):
|
def __button_release_event_cb(self, icon, event):
|
||||||
@ -918,8 +919,8 @@ class CellRendererIcon(Gtk.CellRenderer):
|
|||||||
else:
|
else:
|
||||||
context.set_state(Gtk.StateFlags.NORMAL)
|
context.set_state(Gtk.StateFlags.NORMAL)
|
||||||
|
|
||||||
|
Gtk.render_background(
|
||||||
Gtk.render_background(context, cr, background_area.x, background_area.y,
|
context, cr, background_area.x, background_area.y,
|
||||||
background_area.width, background_area.height)
|
background_area.width, background_area.height)
|
||||||
|
|
||||||
Gtk.render_frame(context, cr, background_area.x, background_area.y,
|
Gtk.render_frame(context, cr, background_area.x, background_area.y,
|
||||||
|
@ -34,7 +34,8 @@ class Notebook(Gtk.Notebook):
|
|||||||
|
|
||||||
__gproperties__ = {
|
__gproperties__ = {
|
||||||
'can-close-tabs': (bool, None, None, False,
|
'can-close-tabs': (bool, None, None, False,
|
||||||
GObject.PARAM_READWRITE | GObject.PARAM_CONSTRUCT_ONLY),
|
GObject.PARAM_READWRITE |
|
||||||
|
GObject.PARAM_CONSTRUCT_ONLY),
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, **kwargs):
|
def __init__(self, **kwargs):
|
||||||
|
@ -43,6 +43,7 @@ assert CursorInvoker
|
|||||||
assert ToolInvoker
|
assert ToolInvoker
|
||||||
assert CellRendererInvoker
|
assert CellRendererInvoker
|
||||||
|
|
||||||
|
|
||||||
class _HeaderItem(Gtk.MenuItem):
|
class _HeaderItem(Gtk.MenuItem):
|
||||||
"""A MenuItem with a custom child widget that gets all the
|
"""A MenuItem with a custom child widget that gets all the
|
||||||
available space.
|
available space.
|
||||||
|
@ -151,7 +151,7 @@ class PaletteMenuItem(Gtk.EventBox):
|
|||||||
self._hbox.reorder_child(icon, 0)
|
self._hbox.reorder_child(icon, 0)
|
||||||
|
|
||||||
def set_sensitive(self, sensitive):
|
def set_sensitive(self, sensitive):
|
||||||
is_sensitive = bool(not self.get_state_flags() & \
|
is_sensitive = bool(not self.get_state_flags() &
|
||||||
Gtk.StateFlags.INSENSITIVE)
|
Gtk.StateFlags.INSENSITIVE)
|
||||||
if is_sensitive == sensitive:
|
if is_sensitive == sensitive:
|
||||||
return
|
return
|
||||||
@ -165,6 +165,6 @@ class PaletteMenuItem(Gtk.EventBox):
|
|||||||
self.handler_block(self.id_bt_release_cb)
|
self.handler_block(self.id_bt_release_cb)
|
||||||
self.handler_block(self.id_enter_notify_cb)
|
self.handler_block(self.id_enter_notify_cb)
|
||||||
self.handler_block(self.id_leave_notify_cb)
|
self.handler_block(self.id_leave_notify_cb)
|
||||||
self.set_state_flags(self.get_state_flags() | \
|
self.set_state_flags(self.get_state_flags() |
|
||||||
Gtk.StateFlags.INSENSITIVE,
|
Gtk.StateFlags.INSENSITIVE,
|
||||||
clear=True)
|
clear=True)
|
||||||
|
@ -55,11 +55,13 @@ def _calculate_gap(a, b):
|
|||||||
gap = False
|
gap = False
|
||||||
|
|
||||||
if gap:
|
if gap:
|
||||||
if gap_side == Gtk.PositionType.BOTTOM or gap_side == Gtk.PositionType.TOP:
|
if gap_side == Gtk.PositionType.BOTTOM or \
|
||||||
|
gap_side == Gtk.PositionType.TOP:
|
||||||
gap_start = min(a.width, max(0, b.x - a.x))
|
gap_start = min(a.width, max(0, b.x - a.x))
|
||||||
gap_size = max(0, min(a.width,
|
gap_size = max(0, min(a.width,
|
||||||
(b.x + b.width) - a.x) - gap_start)
|
(b.x + b.width) - a.x) - gap_start)
|
||||||
elif gap_side == Gtk.PositionType.RIGHT or gap_side == Gtk.PositionType.LEFT:
|
elif gap_side == Gtk.PositionType.RIGHT or \
|
||||||
|
gap_side == Gtk.PositionType.LEFT:
|
||||||
gap_start = min(a.height, max(0, b.y - a.y))
|
gap_start = min(a.height, max(0, b.y - a.y))
|
||||||
gap_size = max(0, min(a.height,
|
gap_size = max(0, min(a.height,
|
||||||
(b.y + b.height) - a.y) - gap_start)
|
(b.y + b.height) - a.y) - gap_start)
|
||||||
@ -295,7 +297,7 @@ class _PaletteWindowWidget(Gtk.Window):
|
|||||||
|
|
||||||
def set_accept_focus(self, focus):
|
def set_accept_focus(self, focus):
|
||||||
self._should_accept_focus = focus
|
self._should_accept_focus = focus
|
||||||
if self.get_window() != None:
|
if self.get_window() is not None:
|
||||||
self.get_window().set_accept_focus(focus)
|
self.get_window().set_accept_focus(focus)
|
||||||
|
|
||||||
def get_origin(self):
|
def get_origin(self):
|
||||||
@ -368,10 +370,12 @@ class _PaletteWindowWidget(Gtk.Window):
|
|||||||
context = self.get_style_context()
|
context = self.get_style_context()
|
||||||
context.add_class('toolitem')
|
context.add_class('toolitem')
|
||||||
if gap:
|
if gap:
|
||||||
Gtk.render_frame_gap(context, cr, 0, 0, allocation.width, allocation.height,
|
Gtk.render_frame_gap(
|
||||||
|
context, cr, 0, 0, allocation.width, allocation.height,
|
||||||
gap[0], gap[1], gap[1] + gap[2])
|
gap[0], gap[1], gap[1] + gap[2])
|
||||||
else:
|
else:
|
||||||
Gtk.render_frame(context, cr, 0, 0, allocation.width, allocation.height)
|
Gtk.render_frame(
|
||||||
|
context, cr, 0, 0, allocation.width, allocation.height)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def __enter_notify_event_cb(self, widget, event):
|
def __enter_notify_event_cb(self, widget, event):
|
||||||
@ -1086,13 +1090,15 @@ class WidgetInvoker(Invoker):
|
|||||||
self.__click_event_cb)
|
self.__click_event_cb)
|
||||||
self._touch_hid = self._widget.connect('touch-event',
|
self._touch_hid = self._widget.connect('touch-event',
|
||||||
self.__touch_event_cb)
|
self.__touch_event_cb)
|
||||||
self._release_hid = self._widget.connect('button-release-event',
|
self._release_hid = \
|
||||||
|
self._widget.connect('button-release-event',
|
||||||
self.__button_release_event_cb)
|
self.__button_release_event_cb)
|
||||||
self._draw_hid = self._widget.connect_after('draw', self.__drawing_cb)
|
self._draw_hid = self._widget.connect_after('draw', self.__drawing_cb)
|
||||||
|
|
||||||
self._long_pressed_hid = self._long_pressed_controller.connect(
|
self._long_pressed_hid = self._long_pressed_controller.connect(
|
||||||
'pressed', self.__long_pressed_event_cb, self._widget)
|
'pressed', self.__long_pressed_event_cb, self._widget)
|
||||||
self._long_pressed_controller.attach(self._widget,
|
self._long_pressed_controller.attach(
|
||||||
|
self._widget,
|
||||||
SugarGestures.EventControllerFlags.NONE)
|
SugarGestures.EventControllerFlags.NONE)
|
||||||
|
|
||||||
self.attach(parent)
|
self.attach(parent)
|
||||||
@ -1260,9 +1266,11 @@ class CursorInvoker(Invoker):
|
|||||||
self.__leave_notify_event_cb)
|
self.__leave_notify_event_cb)
|
||||||
self._release_hid = self._item.connect('button-release-event',
|
self._release_hid = self._item.connect('button-release-event',
|
||||||
self.__button_release_event_cb)
|
self.__button_release_event_cb)
|
||||||
self._long_pressed_hid = self._long_pressed_controller.connect('pressed', \
|
self._long_pressed_hid = self._long_pressed_controller.connect(
|
||||||
|
'pressed',
|
||||||
self.__long_pressed_event_cb, self._item)
|
self.__long_pressed_event_cb, self._item)
|
||||||
self._long_pressed_controller.attach(self._item, \
|
self._long_pressed_controller.attach(
|
||||||
|
self._item,
|
||||||
SugarGestures.EventControllerFlags.NONE)
|
SugarGestures.EventControllerFlags.NONE)
|
||||||
|
|
||||||
def detach(self):
|
def detach(self):
|
||||||
@ -1364,9 +1372,10 @@ class CellRendererInvoker(Invoker):
|
|||||||
self.__leave_notify_event_cb)
|
self.__leave_notify_event_cb)
|
||||||
self._release_hid = tree_view.connect('button-release-event',
|
self._release_hid = tree_view.connect('button-release-event',
|
||||||
self.__button_release_event_cb)
|
self.__button_release_event_cb)
|
||||||
self._long_pressed_hid = self._long_pressed_controller.connect( \
|
self._long_pressed_hid = self._long_pressed_controller.connect(
|
||||||
'pressed', self.__long_pressed_event_cb, tree_view)
|
'pressed', self.__long_pressed_event_cb, tree_view)
|
||||||
self._long_pressed_controller.attach(tree_view,
|
self._long_pressed_controller.attach(
|
||||||
|
tree_view,
|
||||||
SugarGestures.EventControllerFlags.NONE)
|
SugarGestures.EventControllerFlags.NONE)
|
||||||
Invoker.attach(self, cell_renderer)
|
Invoker.attach(self, cell_renderer)
|
||||||
|
|
||||||
|
@ -280,7 +280,8 @@ class _Box(Gtk.EventBox):
|
|||||||
cr.set_source_rgba(*style.COLOR_BUTTON_GREY.get_rgba())
|
cr.set_source_rgba(*style.COLOR_BUTTON_GREY.get_rgba())
|
||||||
cr.move_to(0, 0)
|
cr.move_to(0, 0)
|
||||||
cr.line_to(button_alloc.x + style.FOCUS_LINE_WIDTH, 0)
|
cr.line_to(button_alloc.x + style.FOCUS_LINE_WIDTH, 0)
|
||||||
cr.move_to(button_alloc.x + button_alloc.width - style.FOCUS_LINE_WIDTH, 0)
|
cr.move_to(
|
||||||
|
button_alloc.x + button_alloc.width - style.FOCUS_LINE_WIDTH, 0)
|
||||||
cr.line_to(self.get_allocation().width, 0)
|
cr.line_to(self.get_allocation().width, 0)
|
||||||
cr.stroke()
|
cr.stroke()
|
||||||
|
|
||||||
|
@ -43,7 +43,8 @@ def _add_accelerator(tool_button):
|
|||||||
keyval, mask = Gtk.accelerator_parse(tool_button.props.accelerator)
|
keyval, mask = Gtk.accelerator_parse(tool_button.props.accelerator)
|
||||||
# the accelerator needs to be set at the child, so the Gtk.AccelLabel
|
# the accelerator needs to be set at the child, so the Gtk.AccelLabel
|
||||||
# in the palette can pick it up.
|
# in the palette can pick it up.
|
||||||
tool_button.get_child().add_accelerator('clicked', accel_group, keyval, mask,
|
tool_button.get_child(
|
||||||
|
).add_accelerator('clicked', accel_group, keyval, mask,
|
||||||
Gtk.AccelFlags.LOCKED | Gtk.AccelFlags.VISIBLE)
|
Gtk.AccelFlags.LOCKED | Gtk.AccelFlags.VISIBLE)
|
||||||
|
|
||||||
|
|
||||||
|
@ -239,7 +239,8 @@ class HTray(Gtk.EventBox):
|
|||||||
|
|
||||||
__gproperties__ = {
|
__gproperties__ = {
|
||||||
'align': (int, None, None, 0, 1, ALIGN_TO_START,
|
'align': (int, None, None, 0, 1, ALIGN_TO_START,
|
||||||
GObject.PARAM_READWRITE | GObject.PARAM_CONSTRUCT_ONLY),
|
GObject.PARAM_READWRITE |
|
||||||
|
GObject.PARAM_CONSTRUCT_ONLY),
|
||||||
'drag-active': (bool, None, None, False, GObject.PARAM_READWRITE),
|
'drag-active': (bool, None, None, False, GObject.PARAM_READWRITE),
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -294,7 +295,8 @@ class HTray(Gtk.EventBox):
|
|||||||
if self._drag_active != active:
|
if self._drag_active != active:
|
||||||
self._drag_active = active
|
self._drag_active = active
|
||||||
if self._drag_active:
|
if self._drag_active:
|
||||||
self._viewport.traybar.modify_bg(Gtk.StateType.NORMAL,
|
self._viewport.traybar.modify_bg(
|
||||||
|
Gtk.StateType.NORMAL,
|
||||||
style.COLOR_BLACK.get_gdk_color())
|
style.COLOR_BLACK.get_gdk_color())
|
||||||
else:
|
else:
|
||||||
self._viewport.traybar.modify_bg(Gtk.StateType.NORMAL, None)
|
self._viewport.traybar.modify_bg(Gtk.StateType.NORMAL, None)
|
||||||
@ -384,7 +386,8 @@ class VTray(Gtk.EventBox):
|
|||||||
if self._drag_active != active:
|
if self._drag_active != active:
|
||||||
self._drag_active = active
|
self._drag_active = active
|
||||||
if self._drag_active:
|
if self._drag_active:
|
||||||
self._viewport.traybar.modify_bg(Gtk.StateType.NORMAL,
|
self._viewport.traybar.modify_bg(
|
||||||
|
Gtk.StateType.NORMAL,
|
||||||
style.COLOR_BLACK.get_gdk_color())
|
style.COLOR_BLACK.get_gdk_color())
|
||||||
else:
|
else:
|
||||||
self._viewport.traybar.modify_bg(Gtk.StateType.NORMAL, None)
|
self._viewport.traybar.modify_bg(Gtk.StateType.NORMAL, None)
|
||||||
|
@ -46,7 +46,7 @@ class UnfullscreenButton(Gtk.Window):
|
|||||||
|
|
||||||
self.props.accept_focus = False
|
self.props.accept_focus = False
|
||||||
|
|
||||||
#Setup estimate of width, height
|
# Setup estimate of width, height
|
||||||
valid_, w, h = Gtk.icon_size_lookup(Gtk.IconSize.LARGE_TOOLBAR)
|
valid_, w, h = Gtk.icon_size_lookup(Gtk.IconSize.LARGE_TOOLBAR)
|
||||||
self._width = w
|
self._width = w
|
||||||
self._height = h
|
self._height = h
|
||||||
@ -162,8 +162,8 @@ class Window(Gtk.Window):
|
|||||||
self._unfullscreen_button_timeout_id = None
|
self._unfullscreen_button_timeout_id = None
|
||||||
|
|
||||||
self._unfullscreen_button_timeout_id = \
|
self._unfullscreen_button_timeout_id = \
|
||||||
GLib.timeout_add_seconds( \
|
GLib.timeout_add_seconds(
|
||||||
_UNFULLSCREEN_BUTTON_VISIBILITY_TIMEOUT, \
|
_UNFULLSCREEN_BUTTON_VISIBILITY_TIMEOUT,
|
||||||
self.__unfullscreen_button_timeout_cb)
|
self.__unfullscreen_button_timeout_cb)
|
||||||
|
|
||||||
def unfullscreen(self):
|
def unfullscreen(self):
|
||||||
@ -286,8 +286,8 @@ class Window(Gtk.Window):
|
|||||||
self._unfullscreen_button_timeout_id = None
|
self._unfullscreen_button_timeout_id = None
|
||||||
|
|
||||||
self._unfullscreen_button_timeout_id = \
|
self._unfullscreen_button_timeout_id = \
|
||||||
GLib.timeout_add_seconds( \
|
GLib.timeout_add_seconds(
|
||||||
_UNFULLSCREEN_BUTTON_VISIBILITY_TIMEOUT, \
|
_UNFULLSCREEN_BUTTON_VISIBILITY_TIMEOUT,
|
||||||
self.__unfullscreen_button_timeout_cb)
|
self.__unfullscreen_button_timeout_cb)
|
||||||
|
|
||||||
def __unfullscreen_button_timeout_cb(self):
|
def __unfullscreen_button_timeout_cb(self):
|
||||||
@ -321,5 +321,7 @@ class Window(Gtk.Window):
|
|||||||
def get_enable_fullscreen_mode(self):
|
def get_enable_fullscreen_mode(self):
|
||||||
return self._enable_fullscreen_mode
|
return self._enable_fullscreen_mode
|
||||||
|
|
||||||
enable_fullscreen_mode = GObject.property(type=object,
|
enable_fullscreen_mode = GObject.property(
|
||||||
setter=set_enable_fullscreen_mode, getter=get_enable_fullscreen_mode)
|
type=object,
|
||||||
|
setter=set_enable_fullscreen_mode,
|
||||||
|
getter=get_enable_fullscreen_mode)
|
||||||
|
@ -25,186 +25,186 @@ import logging
|
|||||||
from gi.repository import GConf
|
from gi.repository import GConf
|
||||||
|
|
||||||
colors = [
|
colors = [
|
||||||
['#B20008', '#FF2B34'], \
|
['#B20008', '#FF2B34'],
|
||||||
['#FF2B34', '#B20008'], \
|
['#FF2B34', '#B20008'],
|
||||||
['#E6000A', '#FF2B34'], \
|
['#E6000A', '#FF2B34'],
|
||||||
['#FF2B34', '#E6000A'], \
|
['#FF2B34', '#E6000A'],
|
||||||
['#FFADCE', '#FF2B34'], \
|
['#FFADCE', '#FF2B34'],
|
||||||
['#9A5200', '#FF2B34'], \
|
['#9A5200', '#FF2B34'],
|
||||||
['#FF2B34', '#9A5200'], \
|
['#FF2B34', '#9A5200'],
|
||||||
['#FF8F00', '#FF2B34'], \
|
['#FF8F00', '#FF2B34'],
|
||||||
['#FF2B34', '#FF8F00'], \
|
['#FF2B34', '#FF8F00'],
|
||||||
['#FFC169', '#FF2B34'], \
|
['#FFC169', '#FF2B34'],
|
||||||
['#807500', '#FF2B34'], \
|
['#807500', '#FF2B34'],
|
||||||
['#FF2B34', '#807500'], \
|
['#FF2B34', '#807500'],
|
||||||
['#BE9E00', '#FF2B34'], \
|
['#BE9E00', '#FF2B34'],
|
||||||
['#FF2B34', '#BE9E00'], \
|
['#FF2B34', '#BE9E00'],
|
||||||
['#F8E800', '#FF2B34'], \
|
['#F8E800', '#FF2B34'],
|
||||||
['#008009', '#FF2B34'], \
|
['#008009', '#FF2B34'],
|
||||||
['#FF2B34', '#008009'], \
|
['#FF2B34', '#008009'],
|
||||||
['#00B20D', '#FF2B34'], \
|
['#00B20D', '#FF2B34'],
|
||||||
['#FF2B34', '#00B20D'], \
|
['#FF2B34', '#00B20D'],
|
||||||
['#8BFF7A', '#FF2B34'], \
|
['#8BFF7A', '#FF2B34'],
|
||||||
['#00588C', '#FF2B34'], \
|
['#00588C', '#FF2B34'],
|
||||||
['#FF2B34', '#00588C'], \
|
['#FF2B34', '#00588C'],
|
||||||
['#005FE4', '#FF2B34'], \
|
['#005FE4', '#FF2B34'],
|
||||||
['#FF2B34', '#005FE4'], \
|
['#FF2B34', '#005FE4'],
|
||||||
['#BCCDFF', '#FF2B34'], \
|
['#BCCDFF', '#FF2B34'],
|
||||||
['#5E008C', '#FF2B34'], \
|
['#5E008C', '#FF2B34'],
|
||||||
['#FF2B34', '#5E008C'], \
|
['#FF2B34', '#5E008C'],
|
||||||
['#7F00BF', '#FF2B34'], \
|
['#7F00BF', '#FF2B34'],
|
||||||
['#FF2B34', '#7F00BF'], \
|
['#FF2B34', '#7F00BF'],
|
||||||
['#D1A3FF', '#FF2B34'], \
|
['#D1A3FF', '#FF2B34'],
|
||||||
['#9A5200', '#FF8F00'], \
|
['#9A5200', '#FF8F00'],
|
||||||
['#FF8F00', '#9A5200'], \
|
['#FF8F00', '#9A5200'],
|
||||||
['#C97E00', '#FF8F00'], \
|
['#C97E00', '#FF8F00'],
|
||||||
['#FF8F00', '#C97E00'], \
|
['#FF8F00', '#C97E00'],
|
||||||
['#FFC169', '#FF8F00'], \
|
['#FFC169', '#FF8F00'],
|
||||||
['#807500', '#FF8F00'], \
|
['#807500', '#FF8F00'],
|
||||||
['#FF8F00', '#807500'], \
|
['#FF8F00', '#807500'],
|
||||||
['#BE9E00', '#FF8F00'], \
|
['#BE9E00', '#FF8F00'],
|
||||||
['#FF8F00', '#BE9E00'], \
|
['#FF8F00', '#BE9E00'],
|
||||||
['#F8E800', '#FF8F00'], \
|
['#F8E800', '#FF8F00'],
|
||||||
['#008009', '#FF8F00'], \
|
['#008009', '#FF8F00'],
|
||||||
['#FF8F00', '#008009'], \
|
['#FF8F00', '#008009'],
|
||||||
['#00B20D', '#FF8F00'], \
|
['#00B20D', '#FF8F00'],
|
||||||
['#FF8F00', '#00B20D'], \
|
['#FF8F00', '#00B20D'],
|
||||||
['#8BFF7A', '#FF8F00'], \
|
['#8BFF7A', '#FF8F00'],
|
||||||
['#00588C', '#FF8F00'], \
|
['#00588C', '#FF8F00'],
|
||||||
['#FF8F00', '#00588C'], \
|
['#FF8F00', '#00588C'],
|
||||||
['#005FE4', '#FF8F00'], \
|
['#005FE4', '#FF8F00'],
|
||||||
['#FF8F00', '#005FE4'], \
|
['#FF8F00', '#005FE4'],
|
||||||
['#BCCDFF', '#FF8F00'], \
|
['#BCCDFF', '#FF8F00'],
|
||||||
['#5E008C', '#FF8F00'], \
|
['#5E008C', '#FF8F00'],
|
||||||
['#FF8F00', '#5E008C'], \
|
['#FF8F00', '#5E008C'],
|
||||||
['#A700FF', '#FF8F00'], \
|
['#A700FF', '#FF8F00'],
|
||||||
['#FF8F00', '#A700FF'], \
|
['#FF8F00', '#A700FF'],
|
||||||
['#D1A3FF', '#FF8F00'], \
|
['#D1A3FF', '#FF8F00'],
|
||||||
['#B20008', '#FF8F00'], \
|
['#B20008', '#FF8F00'],
|
||||||
['#FF8F00', '#B20008'], \
|
['#FF8F00', '#B20008'],
|
||||||
['#FF2B34', '#FF8F00'], \
|
['#FF2B34', '#FF8F00'],
|
||||||
['#FF8F00', '#FF2B34'], \
|
['#FF8F00', '#FF2B34'],
|
||||||
['#FFADCE', '#FF8F00'], \
|
['#FFADCE', '#FF8F00'],
|
||||||
['#807500', '#F8E800'], \
|
['#807500', '#F8E800'],
|
||||||
['#F8E800', '#807500'], \
|
['#F8E800', '#807500'],
|
||||||
['#BE9E00', '#F8E800'], \
|
['#BE9E00', '#F8E800'],
|
||||||
['#F8E800', '#BE9E00'], \
|
['#F8E800', '#BE9E00'],
|
||||||
['#FFFA00', '#EDDE00'], \
|
['#FFFA00', '#EDDE00'],
|
||||||
['#008009', '#F8E800'], \
|
['#008009', '#F8E800'],
|
||||||
['#F8E800', '#008009'], \
|
['#F8E800', '#008009'],
|
||||||
['#00EA11', '#F8E800'], \
|
['#00EA11', '#F8E800'],
|
||||||
['#F8E800', '#00EA11'], \
|
['#F8E800', '#00EA11'],
|
||||||
['#8BFF7A', '#F8E800'], \
|
['#8BFF7A', '#F8E800'],
|
||||||
['#00588C', '#F8E800'], \
|
['#00588C', '#F8E800'],
|
||||||
['#F8E800', '#00588C'], \
|
['#F8E800', '#00588C'],
|
||||||
['#00A0FF', '#F8E800'], \
|
['#00A0FF', '#F8E800'],
|
||||||
['#F8E800', '#00A0FF'], \
|
['#F8E800', '#00A0FF'],
|
||||||
['#BCCEFF', '#F8E800'], \
|
['#BCCEFF', '#F8E800'],
|
||||||
['#5E008C', '#F8E800'], \
|
['#5E008C', '#F8E800'],
|
||||||
['#F8E800', '#5E008C'], \
|
['#F8E800', '#5E008C'],
|
||||||
['#AC32FF', '#F8E800'], \
|
['#AC32FF', '#F8E800'],
|
||||||
['#F8E800', '#AC32FF'], \
|
['#F8E800', '#AC32FF'],
|
||||||
['#D1A3FF', '#F8E800'], \
|
['#D1A3FF', '#F8E800'],
|
||||||
['#B20008', '#F8E800'], \
|
['#B20008', '#F8E800'],
|
||||||
['#F8E800', '#B20008'], \
|
['#F8E800', '#B20008'],
|
||||||
['#FF2B34', '#F8E800'], \
|
['#FF2B34', '#F8E800'],
|
||||||
['#F8E800', '#FF2B34'], \
|
['#F8E800', '#FF2B34'],
|
||||||
['#FFADCE', '#F8E800'], \
|
['#FFADCE', '#F8E800'],
|
||||||
['#9A5200', '#F8E800'], \
|
['#9A5200', '#F8E800'],
|
||||||
['#F8E800', '#9A5200'], \
|
['#F8E800', '#9A5200'],
|
||||||
['#FF8F00', '#F8E800'], \
|
['#FF8F00', '#F8E800'],
|
||||||
['#F8E800', '#FF8F00'], \
|
['#F8E800', '#FF8F00'],
|
||||||
['#FFC169', '#F8E800'], \
|
['#FFC169', '#F8E800'],
|
||||||
['#008009', '#00EA11'], \
|
['#008009', '#00EA11'],
|
||||||
['#00EA11', '#008009'], \
|
['#00EA11', '#008009'],
|
||||||
['#00B20D', '#00EA11'], \
|
['#00B20D', '#00EA11'],
|
||||||
['#00EA11', '#00B20D'], \
|
['#00EA11', '#00B20D'],
|
||||||
['#8BFF7A', '#00EA11'], \
|
['#8BFF7A', '#00EA11'],
|
||||||
['#00588C', '#00EA11'], \
|
['#00588C', '#00EA11'],
|
||||||
['#00EA11', '#00588C'], \
|
['#00EA11', '#00588C'],
|
||||||
['#005FE4', '#00EA11'], \
|
['#005FE4', '#00EA11'],
|
||||||
['#00EA11', '#005FE4'], \
|
['#00EA11', '#005FE4'],
|
||||||
['#BCCDFF', '#00EA11'], \
|
['#BCCDFF', '#00EA11'],
|
||||||
['#5E008C', '#00EA11'], \
|
['#5E008C', '#00EA11'],
|
||||||
['#00EA11', '#5E008C'], \
|
['#00EA11', '#5E008C'],
|
||||||
['#7F00BF', '#00EA11'], \
|
['#7F00BF', '#00EA11'],
|
||||||
['#00EA11', '#7F00BF'], \
|
['#00EA11', '#7F00BF'],
|
||||||
['#D1A3FF', '#00EA11'], \
|
['#D1A3FF', '#00EA11'],
|
||||||
['#B20008', '#00EA11'], \
|
['#B20008', '#00EA11'],
|
||||||
['#00EA11', '#B20008'], \
|
['#00EA11', '#B20008'],
|
||||||
['#FF2B34', '#00EA11'], \
|
['#FF2B34', '#00EA11'],
|
||||||
['#00EA11', '#FF2B34'], \
|
['#00EA11', '#FF2B34'],
|
||||||
['#FFADCE', '#00EA11'], \
|
['#FFADCE', '#00EA11'],
|
||||||
['#9A5200', '#00EA11'], \
|
['#9A5200', '#00EA11'],
|
||||||
['#00EA11', '#9A5200'], \
|
['#00EA11', '#9A5200'],
|
||||||
['#FF8F00', '#00EA11'], \
|
['#FF8F00', '#00EA11'],
|
||||||
['#00EA11', '#FF8F00'], \
|
['#00EA11', '#FF8F00'],
|
||||||
['#FFC169', '#00EA11'], \
|
['#FFC169', '#00EA11'],
|
||||||
['#807500', '#00EA11'], \
|
['#807500', '#00EA11'],
|
||||||
['#00EA11', '#807500'], \
|
['#00EA11', '#807500'],
|
||||||
['#BE9E00', '#00EA11'], \
|
['#BE9E00', '#00EA11'],
|
||||||
['#00EA11', '#BE9E00'], \
|
['#00EA11', '#BE9E00'],
|
||||||
['#F8E800', '#00EA11'], \
|
['#F8E800', '#00EA11'],
|
||||||
['#00588C', '#00A0FF'], \
|
['#00588C', '#00A0FF'],
|
||||||
['#00A0FF', '#00588C'], \
|
['#00A0FF', '#00588C'],
|
||||||
['#005FE4', '#00A0FF'], \
|
['#005FE4', '#00A0FF'],
|
||||||
['#00A0FF', '#005FE4'], \
|
['#00A0FF', '#005FE4'],
|
||||||
['#BCCDFF', '#00A0FF'], \
|
['#BCCDFF', '#00A0FF'],
|
||||||
['#5E008C', '#00A0FF'], \
|
['#5E008C', '#00A0FF'],
|
||||||
['#00A0FF', '#5E008C'], \
|
['#00A0FF', '#5E008C'],
|
||||||
['#9900E6', '#00A0FF'], \
|
['#9900E6', '#00A0FF'],
|
||||||
['#00A0FF', '#9900E6'], \
|
['#00A0FF', '#9900E6'],
|
||||||
['#D1A3FF', '#00A0FF'], \
|
['#D1A3FF', '#00A0FF'],
|
||||||
['#B20008', '#00A0FF'], \
|
['#B20008', '#00A0FF'],
|
||||||
['#00A0FF', '#B20008'], \
|
['#00A0FF', '#B20008'],
|
||||||
['#FF2B34', '#00A0FF'], \
|
['#FF2B34', '#00A0FF'],
|
||||||
['#00A0FF', '#FF2B34'], \
|
['#00A0FF', '#FF2B34'],
|
||||||
['#FFADCE', '#00A0FF'], \
|
['#FFADCE', '#00A0FF'],
|
||||||
['#9A5200', '#00A0FF'], \
|
['#9A5200', '#00A0FF'],
|
||||||
['#00A0FF', '#9A5200'], \
|
['#00A0FF', '#9A5200'],
|
||||||
['#FF8F00', '#00A0FF'], \
|
['#FF8F00', '#00A0FF'],
|
||||||
['#00A0FF', '#FF8F00'], \
|
['#00A0FF', '#FF8F00'],
|
||||||
['#FFC169', '#00A0FF'], \
|
['#FFC169', '#00A0FF'],
|
||||||
['#807500', '#00A0FF'], \
|
['#807500', '#00A0FF'],
|
||||||
['#00A0FF', '#807500'], \
|
['#00A0FF', '#807500'],
|
||||||
['#BE9E00', '#00A0FF'], \
|
['#BE9E00', '#00A0FF'],
|
||||||
['#00A0FF', '#BE9E00'], \
|
['#00A0FF', '#BE9E00'],
|
||||||
['#F8E800', '#00A0FF'], \
|
['#F8E800', '#00A0FF'],
|
||||||
['#008009', '#00A0FF'], \
|
['#008009', '#00A0FF'],
|
||||||
['#00A0FF', '#008009'], \
|
['#00A0FF', '#008009'],
|
||||||
['#00B20D', '#00A0FF'], \
|
['#00B20D', '#00A0FF'],
|
||||||
['#00A0FF', '#00B20D'], \
|
['#00A0FF', '#00B20D'],
|
||||||
['#8BFF7A', '#00A0FF'], \
|
['#8BFF7A', '#00A0FF'],
|
||||||
['#5E008C', '#AC32FF'], \
|
['#5E008C', '#AC32FF'],
|
||||||
['#AC32FF', '#5E008C'], \
|
['#AC32FF', '#5E008C'],
|
||||||
['#7F00BF', '#AC32FF'], \
|
['#7F00BF', '#AC32FF'],
|
||||||
['#AC32FF', '#7F00BF'], \
|
['#AC32FF', '#7F00BF'],
|
||||||
['#D1A3FF', '#AC32FF'], \
|
['#D1A3FF', '#AC32FF'],
|
||||||
['#B20008', '#AC32FF'], \
|
['#B20008', '#AC32FF'],
|
||||||
['#AC32FF', '#B20008'], \
|
['#AC32FF', '#B20008'],
|
||||||
['#FF2B34', '#AC32FF'], \
|
['#FF2B34', '#AC32FF'],
|
||||||
['#AC32FF', '#FF2B34'], \
|
['#AC32FF', '#FF2B34'],
|
||||||
['#FFADCE', '#AC32FF'], \
|
['#FFADCE', '#AC32FF'],
|
||||||
['#9A5200', '#AC32FF'], \
|
['#9A5200', '#AC32FF'],
|
||||||
['#AC32FF', '#9A5200'], \
|
['#AC32FF', '#9A5200'],
|
||||||
['#FF8F00', '#AC32FF'], \
|
['#FF8F00', '#AC32FF'],
|
||||||
['#AC32FF', '#FF8F00'], \
|
['#AC32FF', '#FF8F00'],
|
||||||
['#FFC169', '#AC32FF'], \
|
['#FFC169', '#AC32FF'],
|
||||||
['#807500', '#AC32FF'], \
|
['#807500', '#AC32FF'],
|
||||||
['#AC32FF', '#807500'], \
|
['#AC32FF', '#807500'],
|
||||||
['#BE9E00', '#AC32FF'], \
|
['#BE9E00', '#AC32FF'],
|
||||||
['#AC32FF', '#BE9E00'], \
|
['#AC32FF', '#BE9E00'],
|
||||||
['#F8E800', '#AC32FF'], \
|
['#F8E800', '#AC32FF'],
|
||||||
['#008009', '#AC32FF'], \
|
['#008009', '#AC32FF'],
|
||||||
['#AC32FF', '#008009'], \
|
['#AC32FF', '#008009'],
|
||||||
['#00B20D', '#AC32FF'], \
|
['#00B20D', '#AC32FF'],
|
||||||
['#AC32FF', '#00B20D'], \
|
['#AC32FF', '#00B20D'],
|
||||||
['#8BFF7A', '#AC32FF'], \
|
['#8BFF7A', '#AC32FF'],
|
||||||
['#00588C', '#AC32FF'], \
|
['#00588C', '#AC32FF'],
|
||||||
['#AC32FF', '#00588C'], \
|
['#AC32FF', '#00588C'],
|
||||||
['#005FE4', '#AC32FF'], \
|
['#005FE4', '#AC32FF'],
|
||||||
['#AC32FF', '#005FE4'], \
|
['#AC32FF', '#005FE4'],
|
||||||
['#BCCDFF', '#AC32FF'], \
|
['#BCCDFF', '#AC32FF'],
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user