diff --git a/Chess/ChessPiecesArray.png b/Chess/ChessPiecesArray.png deleted file mode 100644 index 101c0c9d..00000000 Binary files a/Chess/ChessPiecesArray.png and /dev/null differ diff --git a/Chess/Demo_Chess_AGAINST_AI.py b/Chess/Demo_Chess_AGAINST_AI.py deleted file mode 100644 index cf6cbc99..00000000 --- a/Chess/Demo_Chess_AGAINST_AI.py +++ /dev/null @@ -1,233 +0,0 @@ -import PySimpleGUI as sg -import os -import sys -import chess -import chess.pgn -import copy -import chess.uci - -CHESS_PATH = '.' # path to the chess pieces - -BLANK = 0 # piece names -PAWNB = 1 -KNIGHTB = 2 -BISHOPB = 3 -ROOKB = 4 -KINGB = 5 -QUEENB = 6 -PAWNW = 7 -KNIGHTW = 8 -BISHOPW = 9 -ROOKW = 10 -KINGW = 11 -QUEENW = 12 - -initial_board = [[ROOKB, KNIGHTB, BISHOPB, QUEENB, KINGB, BISHOPB, KNIGHTB, ROOKB], - [PAWNB, ] * 8, - [BLANK, ] * 8, - [BLANK, ] * 8, - [BLANK, ] * 8, - [BLANK, ] * 8, - [PAWNW, ] * 8, - [ROOKW, KNIGHTW, BISHOPW, QUEENW, KINGW, BISHOPW, KNIGHTW, ROOKW]] - -blank = os.path.join(CHESS_PATH, 'blank.png') -bishopB = os.path.join(CHESS_PATH, 'nbishopb.png') -bishopW = os.path.join(CHESS_PATH, 'nbishopw.png') -pawnB = os.path.join(CHESS_PATH, 'npawnb.png') -pawnW = os.path.join(CHESS_PATH, 'npawnw.png') -knightB = os.path.join(CHESS_PATH, 'nknightb.png') -knightW = os.path.join(CHESS_PATH, 'nknightw.png') -rookB = os.path.join(CHESS_PATH, 'nrookb.png') -rookW = os.path.join(CHESS_PATH, 'nrookw.png') -queenB = os.path.join(CHESS_PATH, 'nqueenb.png') -queenW = os.path.join(CHESS_PATH, 'nqueenw.png') -kingB = os.path.join(CHESS_PATH, 'nkingb.png') -kingW = os.path.join(CHESS_PATH, 'nkingw.png') - -images = {BISHOPB: bishopB, BISHOPW: bishopW, PAWNB: pawnB, PAWNW: pawnW, KNIGHTB: knightB, KNIGHTW: knightW, - ROOKB: rookB, ROOKW: rookW, KINGB: kingB, KINGW: kingW, QUEENB: queenB, QUEENW: queenW, BLANK: blank} - - -def open_pgn_file(filename): - pgn = open(filename) - first_game = chess.pgn.read_game(pgn) - moves = [move for move in first_game.main_line()] - return moves - - -def render_square(image, key, location): - if (location[0] + location[1]) % 2: - color = '#B58863' - else: - color = '#F0D9B5' - return sg.RButton('', image_filename=image, size=(1, 1), button_color=('white', color), pad=(0, 0), key=key) - - -def redraw_board(window, board): - for i in range(8): - for j in range(8): - color = '#B58863' if (i + j) % 2 else '#F0D9B5' - piece_image = images[board[i][j]] - elem = window.FindElement(key=(i, j)) - elem.Update(button_color=('white', color), - image_filename=piece_image, ) - - -def PlayGame(): - menu_def = [['&File', ['&Open PGN File', 'E&xit']], - ['&Help', '&About...'], ] - - # sg.SetOptions(margins=(0,0)) - sg.ChangeLookAndFeel('GreenTan') - # create initial board setup - psg_board = copy.deepcopy(initial_board) - # the main board display layout - board_layout = [[sg.T(' ')] + [sg.T('{}'.format(a), pad=((23, 27), 0), font='Any 13') for a in 'abcdefgh']] - # loop though board and create buttons with images - for i in range(8): - row = [sg.T(str(8 - i) + ' ', font='Any 13')] - for j in range(8): - piece_image = images[psg_board[i][j]] - row.append(render_square(piece_image, key=(i, j), location=(i, j))) - row.append(sg.T(str(8 - i) + ' ', font='Any 13')) - board_layout.append(row) - # add the labels across bottom of board - board_layout.append([sg.T(' ')] + [sg.T('{}'.format(a), pad=((23, 27), 0), font='Any 13') for a in 'abcdefgh']) - - # setup the controls on the right side of screen - openings = ( - 'Any', 'Defense', 'Attack', 'Trap', 'Gambit', 'Counter', 'Sicillian', 'English', 'French', 'Queen\'s openings', - 'King\'s Openings', 'Indian Openings') - - board_controls = [[sg.RButton('New Game', key='New Game'), sg.RButton('Draw')], - [sg.RButton('Resign Game'), sg.RButton('Set FEN')], - [sg.RButton('Player Odds'), sg.RButton('Training')], - [sg.Drop(openings), sg.Text('Opening/Style')], - [sg.CBox('Play As White', key='_white_')], - [sg.Drop([2, 3, 4, 5, 6, 7, 8, 9, 10], size=(3, 1), key='_level_'), sg.Text('Difficulty Level')], - [sg.Text('Move List')], - [sg.Multiline([], do_not_clear=True, autoscroll=True, size=(15, 10), key='_movelist_')], - ] - - # layouts for the tabs - controls_layout = [[sg.Text('Performance Parameters', font='_ 20')], - [sg.T('Put stuff like AI engine tuning parms on this tab')]] - - statistics_layout = [[sg.Text('Statistics', font=('_ 20'))], - [sg.T('Game statistics go here?')]] - - board_tab = [[sg.Column(board_layout)]] - - # the main window layout - layout = [[sg.Menu(menu_def, tearoff=False)], - [sg.TabGroup([[sg.Tab('Board', board_tab), - sg.Tab('Controls', controls_layout), - sg.Tab('Statistics', statistics_layout)]], title_color='red'), - sg.Column(board_controls)], - [sg.Text('Click anywhere on board for next move', font='_ 14')]] - - window = sg.Window('Chess', - default_button_element_size=(12, 1), - auto_size_buttons=False, - icon='kingb.ico').Layout(layout) - - filename = sg.PopupGetFile('\n'.join(('To begin, set location of AI EXE file', - 'If you have not done so already, download the engine', - 'Download the StockFish Chess engine at: https://stockfishchess.org/download/')), - file_types=(('Chess AI Engine EXE File', '*.exe'),)) - if filename is None: - sys.exit() - engine = chess.uci.popen_engine(filename) - engine.uci() - info_handler = chess.uci.InfoHandler() - engine.info_handlers.append(info_handler) - - board = chess.Board() - move_count = 1 - move_state = move_from = move_to = 0 - # ---===--- Loop taking in user input --- # - while not board.is_game_over(): - - if board.turn == chess.WHITE: - engine.position(board) - - # human_player(board) - move_state = 0 - while True: - button, value = window.Read() - if button in (None, 'Exit'): - exit() - if button == 'New Game': - sg.Popup('You have to restart the program to start a new game... sorry....') - break - psg_board = copy.deepcopy(initial_board) - redraw_board(window, psg_board) - move_state = 0 - break - level = value['_level_'] - if type(button) is tuple: - if move_state == 0: - move_from = button - row, col = move_from - piece = psg_board[row][col] # get the move-from piece - button_square = window.FindElement(key=(row, col)) - button_square.Update(button_color=('white', 'red')) - move_state = 1 - elif move_state == 1: - move_to = button - row, col = move_to - if move_to == move_from: # cancelled move - color = '#B58863' if (row + col) % 2 else '#F0D9B5' - button_square.Update(button_color=('white', color)) - move_state = 0 - continue - - picked_move = '{}{}{}{}'.format('abcdefgh'[move_from[1]], 8 - move_from[0], - 'abcdefgh'[move_to[1]], 8 - move_to[0]) - - if picked_move in [str(move) for move in board.legal_moves]: - board.push(chess.Move.from_uci(picked_move)) - else: - print('Illegal move') - move_state = 0 - color = '#B58863' if (move_from[0] + move_from[1]) % 2 else '#F0D9B5' - button_square.Update(button_color=('white', color)) - continue - - psg_board[move_from[0]][move_from[1]] = BLANK # place blank where piece was - psg_board[row][col] = piece # place piece in the move-to square - redraw_board(window, psg_board) - move_count += 1 - - window.FindElement('_movelist_').Update(picked_move + '\n', append=True) - - break - else: - engine.position(board) - best_move = engine.go(searchmoves=board.legal_moves, depth=level, movetime=(level * 100)).bestmove - move_str = str(best_move) - from_col = ord(move_str[0]) - ord('a') - from_row = 8 - int(move_str[1]) - to_col = ord(move_str[2]) - ord('a') - to_row = 8 - int(move_str[3]) - - window.FindElement('_movelist_').Update(move_str + '\n', append=True) - - piece = psg_board[from_row][from_col] - psg_board[from_row][from_col] = BLANK - psg_board[to_row][to_col] = piece - redraw_board(window, psg_board) - - board.push(best_move) - move_count += 1 - sg.Popup('Game over!', 'Thank you for playing') - - -# Download the StockFish Chess engine at: https://stockfishchess.org/download/ -# engine = chess.uci.popen_engine(r'E:\DownloadsE\stockfish-9-win\Windows\stockfish_9_x64.exe') -# engine.uci() -# info_handler = chess.uci.InfoHandler() -# engine.info_handlers.append(info_handler) -# level = 2 -PlayGame() diff --git a/Chess/Demo_Chess_Board.py b/Chess/Demo_Chess_Board.py deleted file mode 100644 index 279e0ce1..00000000 --- a/Chess/Demo_Chess_Board.py +++ /dev/null @@ -1,160 +0,0 @@ -import PySimpleGUI as sg -import os -import chess -import chess.pgn -import copy -import time - -button_names = ('close', 'cookbook', 'cpu', 'github', 'pysimplegui', 'run', 'storage', 'timer') - -CHESS_PATH = '.' # path to the chess pieces - -BLANK = 0 # piece names -PAWNB = 1 -KNIGHTB = 2 -BISHOPB = 3 -ROOKB = 4 -KINGB = 5 -QUEENB = 6 -PAWNW = 7 -KNIGHTW = 8 -BISHOPW = 9 -ROOKW = 10 -KINGW = 11 -QUEENW = 12 - -initial_board = [[ROOKB, KNIGHTB, BISHOPB, KINGB, QUEENB, BISHOPB, KNIGHTB, ROOKB ], - [PAWNB,]*8, - [BLANK,]*8, - [BLANK,]*8, - [BLANK,]*8, - [BLANK,]*8, - [PAWNW,]*8, - [ROOKW, KNIGHTW, BISHOPW, KINGW, QUEENW, BISHOPW, KNIGHTW, ROOKW]] - -blank = os.path.join(CHESS_PATH, 'blank.png') -bishopB = os.path.join(CHESS_PATH, 'nbishopb.png') -bishopW = os.path.join(CHESS_PATH, 'nbishopw.png') -pawnB = os.path.join(CHESS_PATH, 'npawnb.png') -pawnW = os.path.join(CHESS_PATH, 'npawnw.png') -knightB = os.path.join(CHESS_PATH, 'nknightb.png') -knightW = os.path.join(CHESS_PATH, 'nknightw.png') -rookB = os.path.join(CHESS_PATH, 'nrookb.png') -rookW = os.path.join(CHESS_PATH, 'nrookw.png') -queenB = os.path.join(CHESS_PATH, 'nqueenB.png') -queenW = os.path.join(CHESS_PATH, 'nqueenW.png') -kingB = os.path.join(CHESS_PATH, 'nkingb.png') -kingW = os.path.join(CHESS_PATH, 'nkingw.png') - -images = {BISHOPB: bishopB, BISHOPW: bishopW, PAWNB: pawnB, PAWNW: pawnW, KNIGHTB: knightB, KNIGHTW: knightW, - ROOKB: rookB, ROOKW: rookW, KINGB: kingB, KINGW: kingW, QUEENB: queenB, QUEENW: queenW, BLANK: blank} - -def open_pgn_file(filename): - pgn = open(filename) - first_game = chess.pgn.read_game(pgn) - moves = [move for move in first_game.main_line()] - return moves - -def render_square(image, key, location): - if (location[0] + location[1]) % 2: - color = '#B58863' - else: - color = '#F0D9B5' - return sg.RButton('', image_filename=image, size=(1, 1), button_color=('white', color), pad=(0, 0), key=key) - -def redraw_board(window, board): - for i in range(8): - for j in range(8): - color = '#B58863' if (i+j) % 2 else '#F0D9B5' - piece_image = images[board[i][j]] - elem = window.FindElement(key=(i,j)) - elem.Update(button_color = ('white', color), - image_filename=piece_image,) - -def PlayGame(): - - menu_def = [['&File', ['&Open PGN File', 'E&xit' ]], - ['&Help', '&About...'],] - - # sg.SetOptions(margins=(0,0)) - sg.ChangeLookAndFeel('GreenTan') - # create initial board setup - board = copy.deepcopy(initial_board) - # the main board display layout - board_layout = [[sg.T(' ')] + [sg.T('{}'.format(a), pad=((23,27),0), font='Any 13') for a in 'abcdefgh']] - # loop though board and create buttons with images - for i in range(8): - row = [sg.T(str(8-i)+' ', font='Any 13')] - for j in range(8): - piece_image = images[board[i][j]] - row.append(render_square(piece_image, key=(i,j), location=(i,j))) - row.append(sg.T(str(8-i)+' ', font='Any 13')) - board_layout.append(row) - # add the labels across bottom of board - board_layout.append([sg.T(' ')] + [sg.T('{}'.format(a), pad=((23,27),0), font='Any 13') for a in 'abcdefgh']) - - # setup the controls on the right side of screen - openings = ('Any', 'Defense', 'Attack', 'Trap', 'Gambit','Counter', 'Sicillian', 'English','French', 'Queen\'s openings', 'King\'s Openings','Indian Openings') - - board_controls = [[sg.RButton('New Game', key='Open PGN File'), sg.RButton('Draw')], - [sg.RButton('Resign Game'), sg.RButton('Set FEN')], - [sg.RButton('Player Odds'),sg.RButton('Training') ], - [sg.Drop(openings),sg.Text('Opening/Style')], - [sg.CBox('Play a White', key='_white_')], - [sg.Text('Move List')], - [sg.Multiline([], do_not_clear=True, autoscroll=True, size=(15,10),key='_movelist_')],] - - # layouts for the tabs - controls_layout = [[sg.Text('Performance Parameters', font='_ 20')], - [sg.T('Put stuff like AI engine tuning parms on this tab')]] - - statistics_layout = [[sg.Text('Statistics', font=('_ 20'))], - [sg.T('Game statistics go here?')]] - - board_tab = [[sg.Column(board_layout)]] - - # the main window layout - layout = [[sg.Menu(menu_def, tearoff=False)], - [sg.TabGroup([[sg.Tab('Board',board_tab), - sg.Tab('Controls', controls_layout), - sg.Tab('Statistics', statistics_layout)]], title_color='red'), - sg.Column(board_controls)], - [sg.Text('Click anywhere on board for next move', font='_ 14')]] - - window = sg.Window('Chess', default_button_element_size=(12,1), auto_size_buttons=False, icon='kingb.ico').Layout(layout) - - # ---===--- Loop taking in user input --- # - i = 0 - moves = None - while True: - button, value = window.Read() - if button in (None, 'Exit'): - break - if button == 'Open PGN File': - filename = sg.PopupGetFile('', no_window=True) - if filename is not None: - moves = open_pgn_file(filename) - i = 0 - board = copy.deepcopy(initial_board) - window.FindElement('_movelist_').Update(value='') - if button == 'About...': - sg.Popup('Powerd by Engine Kibitz Chess Engine') - if type(button) is tuple and moves is not None and i < len(moves): - move = moves[i] # get the current move - window.FindElement('_movelist_').Update(value='{} {}\n'.format(i+1, str(move)), append=True) - move_from = move.from_square # parse the move-from and move-to squares - move_to = move.to_square - row, col = move_from // 8, move_from % 8 - piece = board[row][col] # get the move-from piece - button = window.FindElement(key=(row,col)) - for x in range(3): - button.Update(button_color = ('white' , 'red' if x % 2 else 'white')) - window.Refresh() - time.sleep(.05) - board[row][col] = BLANK # place blank where piece was - row, col = move_to // 8, move_to % 8 # compute move-to square - board[row][col] = piece # place piece in the move-to square - redraw_board(window, board) - i += 1 - -PlayGame() \ No newline at end of file diff --git a/Chess/bishopb.png b/Chess/bishopb.png deleted file mode 100644 index 453cb323..00000000 Binary files a/Chess/bishopb.png and /dev/null differ diff --git a/Chess/bishopw.png b/Chess/bishopw.png deleted file mode 100644 index 26dae01c..00000000 Binary files a/Chess/bishopw.png and /dev/null differ diff --git a/Chess/blank.png b/Chess/blank.png deleted file mode 100644 index 09ffa6d6..00000000 Binary files a/Chess/blank.png and /dev/null differ diff --git a/Chess/game.pgn b/Chess/game.pgn deleted file mode 100644 index 1dda9fbd..00000000 --- a/Chess/game.pgn +++ /dev/null @@ -1,36 +0,0 @@ -[Event "Wch U12"] -[Site "Duisburg"] -[Date "1992.??.??"] -[Round "1"] -[White "Malakhov, Vladimir"] -[Black "Ab Rahman, M."] -[Result "1-0"] -[WhiteElo ""] -[BlackElo ""] -[ECO "A05"] - -1.Nf3 Nf6 2.b3 g6 3.Bb2 Bg7 4.g3 d6 5.Bg2 O-O 6.O-O c6 7.d3 e5 8.c4 Ne8 9.Nbd2 f5 -10.Qc2 Na6 11.c5 Nxc5 12.Nxe5 Qe7 13.d4 Na6 14.Qc4+ Kh8 15.Nef3 Be6 16.Qc3 f4 -17.gxf4 Rxf4 18.Qe3 Rf8 19.Ng5 Nec7 20.Nc4 Rae8 21.Nxe6 Qxe6 22.Qxe6 Rxe6 -23.e3 d5 24.Ne5 g5 25.Ba3 Rff6 26.Bh3 Re8 27.Bd7 Rd8 28.Be7 Rxd7 29.Bxf6 1-0 - - -[Event "Wch U12"] -[Site "Duisburg"] -[Date "1992.??.??"] -[Round "2"] -[White "Malakhov, Vladimir"] -[Black "Berescu, Alin"] -[Result "1-0"] -[WhiteElo ""] -[BlackElo ""] -[ECO "D05"] - -1.d4 Nf6 2.Nd2 d5 3.Ngf3 e6 4.e3 c5 5.c3 Nbd7 6.Bd3 Bd6 7.O-O O-O 8.Re1 b6 -9.e4 dxe4 10.Nxe4 Be7 11.Ne5 Bb7 12.Ng5 g6 13.Qe2 Nxe5 14.dxe5 Nh5 15.Ne4 Qd5 -16.f4 Rfd8 17.Bc2 Qc6 18.Be3 Rd7 19.Rad1 Rad8 20.Rxd7 Rxd7 21.Nd2 Ng7 22.Be4 Qc8 -23.g4 Qd8 24.Bxb7 Rxb7 25.Ne4 Rd7 26.c4 h5 27.h3 h4 28.Kh2 Ne8 29.f5 Qc7 -30.Bf4 Rd4 31.Qf2 Rxc4 32.f6 Qb7 33.Ng5 Bf8 34.b3 Rc3 35.Qd2 Rf3 36.Nxf3 Qxf3 -37.Qe3 Qd5 38.Qe4 Qd7 39.Qf3 Nc7 40.Rd1 Nd5 41.Bg5 Qc7 42.Re1 b5 43.Qd1 c4 -44.Qc1 Bb4 45.Bd2 Bxd2 46.Qxd2 Nxf6 47.bxc4 bxc4 48.Qd6 Qa5 49.Rf1 Nd5 50.Qd7 Qd2+ -51.Kh1 f5 52.exf6 1-0 diff --git a/Chess/kingb.ico b/Chess/kingb.ico deleted file mode 100644 index 6e6030b3..00000000 Binary files a/Chess/kingb.ico and /dev/null differ diff --git a/Chess/kingb.png b/Chess/kingb.png deleted file mode 100644 index 0d94a1c2..00000000 Binary files a/Chess/kingb.png and /dev/null differ diff --git a/Chess/kingw.png b/Chess/kingw.png deleted file mode 100644 index a4fe68c8..00000000 Binary files a/Chess/kingw.png and /dev/null differ diff --git a/Chess/knightb.png b/Chess/knightb.png deleted file mode 100644 index 8e3d04e6..00000000 Binary files a/Chess/knightb.png and /dev/null differ diff --git a/Chess/knightw.png b/Chess/knightw.png deleted file mode 100644 index 2d716b15..00000000 Binary files a/Chess/knightw.png and /dev/null differ diff --git a/Chess/nbishopb.png b/Chess/nbishopb.png deleted file mode 100644 index c52b6779..00000000 Binary files a/Chess/nbishopb.png and /dev/null differ diff --git a/Chess/nbishopw.png b/Chess/nbishopw.png deleted file mode 100644 index ab73bae6..00000000 Binary files a/Chess/nbishopw.png and /dev/null differ diff --git a/Chess/nkingb.png b/Chess/nkingb.png deleted file mode 100644 index 945a4898..00000000 Binary files a/Chess/nkingb.png and /dev/null differ diff --git a/Chess/nkingw.png b/Chess/nkingw.png deleted file mode 100644 index 6662f323..00000000 Binary files a/Chess/nkingw.png and /dev/null differ diff --git a/Chess/nknightb.png b/Chess/nknightb.png deleted file mode 100644 index e28cbb17..00000000 Binary files a/Chess/nknightb.png and /dev/null differ diff --git a/Chess/nknightw.png b/Chess/nknightw.png deleted file mode 100644 index 34da37f9..00000000 Binary files a/Chess/nknightw.png and /dev/null differ diff --git a/Chess/npawnb.png b/Chess/npawnb.png deleted file mode 100644 index a4798350..00000000 Binary files a/Chess/npawnb.png and /dev/null differ diff --git a/Chess/npawnw.png b/Chess/npawnw.png deleted file mode 100644 index a05034ab..00000000 Binary files a/Chess/npawnw.png and /dev/null differ diff --git a/Chess/nqueenb.png b/Chess/nqueenb.png deleted file mode 100644 index 54231369..00000000 Binary files a/Chess/nqueenb.png and /dev/null differ diff --git a/Chess/nqueenw.png b/Chess/nqueenw.png deleted file mode 100644 index afaab485..00000000 Binary files a/Chess/nqueenw.png and /dev/null differ diff --git a/Chess/nrookb.png b/Chess/nrookb.png deleted file mode 100644 index 8b18a6f5..00000000 Binary files a/Chess/nrookb.png and /dev/null differ diff --git a/Chess/nrookw.png b/Chess/nrookw.png deleted file mode 100644 index 31522a36..00000000 Binary files a/Chess/nrookw.png and /dev/null differ diff --git a/Chess/pawnb.png b/Chess/pawnb.png deleted file mode 100644 index c432d38a..00000000 Binary files a/Chess/pawnb.png and /dev/null differ diff --git a/Chess/pawnw.png b/Chess/pawnw.png deleted file mode 100644 index e98fae2b..00000000 Binary files a/Chess/pawnw.png and /dev/null differ diff --git a/Chess/queenb.png b/Chess/queenb.png deleted file mode 100644 index 225f869e..00000000 Binary files a/Chess/queenb.png and /dev/null differ diff --git a/Chess/queenw.png b/Chess/queenw.png deleted file mode 100644 index d7341649..00000000 Binary files a/Chess/queenw.png and /dev/null differ diff --git a/Chess/readme.md b/Chess/readme.md deleted file mode 100644 index 037f5100..00000000 --- a/Chess/readme.md +++ /dev/null @@ -1,16 +0,0 @@ -# PySimpleGUI-Chess A Chess Game Playback Program - -![image](https://user-images.githubusercontent.com/46163555/64135781-4c58a600-cdba-11e9-968d-60ddfb4c8952.png) - - -## Introduction -This is the start of a front-end GUI for an AI engine that plays chess. It simply reads moves the a PGN file and steps through it showing each of the moves on the board. - -To play against the AI run the program -Demo_Chess_AGAINST_AI.py - -Locate where the pacakge was installed and run the programs from that folder. You need to run from the installed folder so that the images of the chess pieces are located. - -## Home Page (GitHub) - -[www.PySimpleGUI.com](www.PySimpleGUI.com) diff --git a/Chess/requirements.txt b/Chess/requirements.txt deleted file mode 100644 index 5003cd5f..00000000 --- a/Chess/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -PySimpleGUI==3.9.1 -python-chess==0.23.9 diff --git a/Chess/rookb.png b/Chess/rookb.png deleted file mode 100644 index b9748e87..00000000 Binary files a/Chess/rookb.png and /dev/null differ diff --git a/Chess/rookw.png b/Chess/rookw.png deleted file mode 100644 index a805de49..00000000 Binary files a/Chess/rookw.png and /dev/null differ diff --git a/Demo_Toolbar/Demo_Floating_Toolbar.py b/Demo_Toolbar/Demo_Floating_Toolbar.py deleted file mode 100644 index de69a7cc..00000000 --- a/Demo_Toolbar/Demo_Floating_Toolbar.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env python -import sys -if sys.version_info[0] >= 3: - import PySimpleGUI as sg -else: - import PySimpleGUI27 as sg - -import os - -BUTTON_PATH = '.' -button_names = ('close', 'cookbook', 'cpu', 'github', 'pysimplegui', 'run', 'storage', 'timer', 'checkmark', 'camera', 'house', 'download') - - -def ShowMeTheButtons(): - button_files = [os.path.join(BUTTON_PATH, b+'.png') for b in button_names] - - sg.SetOptions(auto_size_buttons=True, margins=(0,0), button_color=sg.COLOR_SYSTEM_DEFAULT) - - toolbar_buttons = [[sg.RButton('{}'.format(button_names[i]), image_size=(32,32), image_filename=f, pad=(0,0), tooltip=button_names[i]) for i, f in enumerate(button_files)],] - - layout = [[sg.Frame('', toolbar_buttons,)]] - - form = sg.FlexForm('Toolbar', - no_titlebar=True, - grab_anywhere=True, - background_color='grey76', - keep_on_top=True, - ).Layout(layout) - - # ---===--- Loop taking in user input --- # - while True: - button, value = form.Read() - print(button) - if button == 'close' or button is None: - break # exit button clicked - -if __name__ == '__main__': - ShowMeTheButtons() \ No newline at end of file diff --git a/Demo_Toolbar/Demo_Floating_Toolbar_Includes_Buttons.py b/Demo_Toolbar/Demo_Floating_Toolbar_Includes_Buttons.py deleted file mode 100644 index 05019d69..00000000 --- a/Demo_Toolbar/Demo_Floating_Toolbar_Includes_Buttons.py +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/env python -import sys -if sys.version_info[0] >= 3: - import PySimpleGUI as sg -else: - import PySimpleGUI27 as sg - -import io -from PIL import Image -import base64 -import subprocess - -button_names = ('close', 'cookbook', 'cpu', 'github', 'pysimplegui', 'run', 'storage', 'timer') - - -house64='iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsSAAALEgHS3X78AAAHPklEQVRYhbVXbUxb1xl+zjn30/a9/gBsbBwCBhPAUD4W2pClSZM0TemkdZPaSf0RTfszTZv2o1qzqmqiaL82salSqzZptVVqqmRV1dEssERKxJKxLAWajEYkAcxXyoBg4xgcY8AY23c/+EgwNiTRdqTz557zPOd5n/Oe95wLPGFzOp24fPp0yeTJk4cbjxzJelIe9qTA5uPHt7mHho6HOzsP1RQUWODxnO/o6Pj/C3A6naT5/ffLC9raWqZbW2v8t29GEz7/d3dXVuY56us7W69cmX1EHqaqKn1sAWffe6+ipK/vROjChaq+WNj/r2wWN44FEvAHamtcLhtfW3uuo7NT24xHVVUKPIYDzrw80vzuu1WuixdbQufPV3SJC747VcxUWC1ZvtFoRPX6tMX+wR27PJ6CLbt3d3zV1WWy2+0HZVn2APAkEgmPKIqeeDzeAwDhcFgLh8MaeVQB//j445qSrq4TU2fO1HlF+L07BGN5hVmXnWXG4PA4+q/OTVb1RwSjwSRZGxqaLm3deq7z+vU/B4NBjIyMwOfzQVEU+Hw+AgD19fUCAGwqwJmXR08dO1brampqjly7Zuu26/3j35GNNdutOqvVAV4QEA6H0D8wgr7u6OS29oCgSxCj7eWXvyB7snLjCDwLAiSTSe3YB20/avv3aNPD/NxmAk4dPbq9pLX1w3BHh23IrPMH6lW1vMyks+XmQxBEAIDRlI2iIoATJqw9kaS/sDt4P3b27A90d2yJql83EMIzxGILcYGniVT+jAKcDgc99dZbT7tOnGgO9/dn9RZb/f5nzeo2t1lPIGM6GAUlUbBlDxl4WA1GcAcEW2+27LddGiXz7cPqrd9fROXPDkC2GMAYv8q/sgUZBZw6fLi+5PPPj0d6e7NHnNm+qX1Wtdht0muLAj7rVhB0fR81VgLc/AKXTK/ioIuHe/5LFG6NgeMmbTdn4r6szrvM195vIAkN24+8AkYfLNfe3h5bEp4aud3Omo8e3eVubPzrgtdb4PU4fYHvbVFLn3LobblOxKJJdMyWwPXiL/F8XQV6brQjWv8r1D9VBvdsJ7Jy9JBlCXorMYyJmsBGZjA74ENo0IeEq7T5Srf3FrBBHWh5++09ZZ9+eiI2MpL/baHdH/yhS813Z+lzrHmQJD1mQrNIjvXBEf4G/NAFZEXvYCfrRtn9v0MI3oZozYUo6cDxFIZsEWOLiLDAQnR+2Cd7bPkm8759Z77u6oqtqwNOu51refPNvaWNjWcWx8edAzUu3/QrJWphuV2fk+OEJCsglGFuZhYtoTJ0lh2BuXwvvvrPLD6SfwHOtReFiUEYFApKOciyAlEUoOZJwj2zMq0N309GbvWU1VosTxcfOPB1y+XLgXA4rK0K+Nsbbzxfefr0B/GJCceoy+EPveZRHEUWgyXLAUlWQAkDIQxzMzO4Iz+Dssrt2FkkYnzgNsxFz+ClIh7ucBsgLM2jlFtyggKKhTP4CD+FiYg26x1wlypKhfm555qv3bgRZc7cXP7c668frHznnb/EJybsQ3Vuf/hQteIssRnMFgcknRGEstWemI0gSXR4oWARXHQEJVNXUesQ4Ex8C8PkNSQU0+pcSjmIsgJe4GByykooxzgd9wYQ6ekrrTEa64v377/OXqiutv387t0/LHq928bcW3wzP9mu5BRY9EazDZLOuBr5SudFEYViAPpIP5RwP7IMGrIXvJAjXkDgoEnGNfMp5SCIOhCahDFHNAQ5YSoxGsLcwFDRnoaGEDcej09M7NrVNDo+VBR8tcJcVmzT6/QWyDpT2uPJ61RAp0IDoAFIpowTkHX1lTEeJrMTjPlRup/Y2+ZjI4XDscG7VmszAYAd5eXGaHCi7seH6n7TsK9ip6LawPO6tAI+OfklAvem0o4BwEsv7oHH404zoiESnsS9YAD+hfzjv/vtJ38cDoZ6OQDo6Om5D6D1NY3+lOMFUMaDPlS1Hm6Dff2IT42D0vVjszEgUFedEct4AYwTUOyqvnm1b+AGkFIJCWVLi9Olnq7xjEAQCWiaayyhLXOkxWqgjANlHAh5AF4jgFIGxjhQxoNkiIJjFJLIAWStAgJgUUsuJV8GLGU82EYCVqhWsjddY5RCFrjU9UEIEI1vhNWWEjQ1oHSLEMqBMCG9AEZhkLl1W0AAROPxzFhNA8j6xMkgYGMHjBIPgaWQEWBuESCEpsdq2hrrNxGQ2QGOMQgcA5ey/j99KtR44H/hwOY5oOpEiPxash1kAdMzfEYHNE0D8KhbwLiNTwFPwLO1L+98I0FykS47sB5LNDziFhAsO5DpKFHIAoOQ8pIgBJB4BkJpWqz2OElIM0QBLOWAQeIgpiAJAFlkICSTA4+RhNjAAUYpZJGDlLIFhBBIPIOWoRI+hgNk+T7P8F4lFJIkQxHXk0nCIuYJTYsl0ECWk5DQB8/zTf8LUluScAguUG0mvv73bz6exuOHJKwUwg8/+lNk5et/AVSZbsni/k4yAAAAAElFTkSuQmCC' - - -timer64='iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsSAAALEgHS3X78AAAJDUlEQVRYhbWWe2xT1x3Hv/fht6+feTiJm6TYCUnaLYUmJFmb0pWu0NKmYhtQxoaKCmKjRe1aVRVV/xh/dFPfj0mZNFUr3TSKIHQCOtYVSkehzCEkJORpJ8GJY8eO7Xvt2L7O9bV97/5Iy3iEdK3YT7rS0e/e8/t+zvmee84hcJOj/nu31zQ23LkxFAxaWC5WYC8rHQDgPXnq9Mcsx6Wu/Z66meLVTkfxbbU1O/oHBo8Mjbg/8IyNd9TW1g46nc5ilYJew3Kx/rm5OfFmal6OhoY7y3bt/OWftvx8s2qh9y++8PyD69c9+ti1+Zs2AzRFN1lMRu7SpK+nra3NVFuztH3z5s3y8RMn3ABQbLNFCFl+YGjEfeb/AsAw+mVT/oDIxWLee1pbf1dZWbHDarVuanv44erKysqp9/d+cMloND7lDwQ6ruxH3iwAAKlqp0N8+623msxm049NJhOCwWmc/OzEYw+uWf2Q1WKhrGbTzLWd6O+i1NzcTNlsNoYgCCkYDKZcLpfEMMxgZUXF1nSaf5Cm6dJ0mod7eBjfr7+j57U33txnLytd5qyqGsAnn343gBUrVuieeOKJlqmpqXV1dXXFhYWFhlwuJwUCgdnm5uaJlpbmI2Nu96X+vr4VdbffjlGPG/lcDhqt7o9yPjdV7XRs9YyNH7q2LvFNwi+//HLNpk2bfuL1el/geZ6RJAn5fB6iKCKTySCfz0MQBPA8D5VKFRi42FeaSiaIrCiivKIiqNNq3xgZGSnr6x94xTM2fp0FNwRoaWnB9u3b766pqWkXRbEmGo0q3G43RkaGQRIkjEYTQADpdBoAUFRUBJqmkckIYKNRtN5996sfffTRxe6enlEAg/7ANL+QzoIWNDc3EwcPHnxubGzsRY7jzF1dXfB4faioq8cjv9oNvbUIFEWDJAiQkJDmIvBccCE8OY5cLg/GYMSw27NBq2f+7Q9Mn1u+fLnh6NGPt3V1nXs2Fo+fevvtd54LBoPpG87Ae++9d7/D4TgkCIKho6MDKosNP3j0ZygvL4dBo4KSIiCkEpBlQM0wkGUgm81hOhDASOfn8I8OQxRF0DQ9abPZNhRYrVtEUdyq1Wi06TQf1OmZzY9v3fo5sMA+sGfPnhWNjY3vx+Pxko6DHVh61wO4b8PjsJs0QCaNnEKDQIRDmBeRysmIxpOQaQ1CAR90ahWqljWBYYwI+cbBp1KmSCT8kEatrpFlyTo40I+xMc9cU3OLd9++D88uCNDe3v5SIpH40cmTJwmF2YYf/nQLbEYtYpEIhse9CLGzyGQEMAYjFAoFkpEQ2JkAaJpGYVk5aJqCucgGiHOIBAPguJjB4x5h0nwqYbFYhpY3rHjqr/s+/JvH4xGvWwN79+6tmZiY2MGyLBHkEnhk+zYUqglEQ0F4QiwonRmEnEdBsQ0EAFKSYLulHEkuClKWQJEEKGLe2DJnLYRUEix7ApRCGdux86mWJ5/c6X/l9TfTV2petROGw+GHs9kscb6rC433rUFJUQF4ngcrypgYugiapmAtsgGShBQbQZINg5Ak6HU6lFXcCgoySFlCMsZBp2dQU78Mer0ekiRZ9u/fX9LTc+Eq8asA1q1bZ2hsbLw/l8shFo/DcUczrCYDxi55MdR9DnZHNb449Gec/fgg2MAkKBJgjAbMRkNQ0BQUJOBzD6LPdRpZgUdJaSnKKp24dckSGI1GHDt2bP1CC/6yBaIoWjKZjGVmZgaWIhsMJhNIALqSSlSZi8AYzSi7pQJ/efUluLvPYsuzL0GjVkNJkTCZzaBJAuVLHMhmSqHVaEAC0GjUsBYUQqVSIZFIFC0EQF4BYBRF0Tg7OwtjoQ1UXsR0cBoCn4Reb4BOq4W1sAjbdv8WZmshXvv1Npz/16cosFqh+Mp7vU4LlUKBcGAKQiqBdCIOlVoDmqahUCgW0v8vgCRJVDabpURRBK1UIptOYWygDzMTYxD5JCgCIAnAUlCAXzy9GzZ7Ob74+6HLeZokQBEEhHQKQZ8XoalJcJGZRcWvsoCiqKQkSUmappFJ82AshVh272qks/I1IvMQu1//w3yOIi/nSQKw2+2ovMUOigAokkBg3INMJgNBEBYHUCgUCVEUE2q1GlwwBDGbg0pBgyLkq8RJAlAQgNpguCr/9UNfAUsSgIKmkc/nIctyZlELWJYNC4LQTRAEUskEOL8XBGSwQR/YaR+EVAIUCShJYv5/J3HZ+/k2EGcjCAV8SHBRQMqDT8QxOuoBy7JobW39x6IALpdLDofDnyQSCej1elwavIBIYBKTwwOYGO5HPBKEgpgf1fxIv2qT821IEob6ejA+PIQ4x2JksB9cNAKWZeHz+fKrVq36bFELACAcDh93Op1fplKpuyaHL8K+pAqtq9eCJIAUF8WEZwhLnFVQKJUgya+mHTK4cAhSTkTrPfdCp9OAIoBYNILj//wEvb290tq1a9t37dp13V0AuOYscLlcMJlMPMMwD/B8SpWeZVFRVQutRouJ0WGEAz5YrQXQ63WQ81nQBAE5n0N351nkxQwMBgaMXoesIKD3Qg/OdXbC6/V68/n8bwYGBgLfCAAAarV6dOXKlfLk5OR9qUSCmOPCMJpMkHI53OpwoLi0FHPJWZw8dhjh6QBq6upQXV0NnVaLqYlL0Gk1GOzvx9GjR3D69Om59evX7zxz5sxxv9+/kP71ANPT0/lgMHhh5cqVt/n9/qUcGyWSbBgOhxOFJaXQqFRQ0hQyc2kweh3sdjtIAlAraOg0Gnx5+gucPfslTp06Ja5atar98OHDv+/s7JQXVMciV7L6+npm48aNT3d3d78gy7LeaDSiqqoKlY4qFJeUwlpgBUWSSM7OIjOXBhuNYGhoCL29vQiFQqG2trbnOzo69p8/fz53I41FAQCgoaFBuWfPng0HDhx4OhgMNuh0OhQXF8NgMMBisUCtVoPneYTDYfj9fvh8PixduvQIy7LtsVjsU5fLdcOR/08AX8czzzxDxmKxtmw2uyaXy92RyWQMgiAwkiTJSqVyVqVSxfR6vctkMh159913z3xzxW8J8HU0NTWRAOyJRMKQTCYZgiBko9E4azabY9lsNuRyub5NOQDAfwBU9w9d4+VBlQAAAABJRU5ErkJggg==' - -close64 = 'iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAEQ0lEQVR42r2XW2wbRRSG/1177TgkdkyoS4shaaWogVIKRAXUVn4BgRBEIRBSkSK1lAakPhTxABJSK6BEtAoXCUHEWwWi4oEXUAVvRUASSBuJliAh5QJp6hrspoGQi69r73LO7Npu6kvsBGek0ezOrvf79szsmbG0D2iwAN8DaMQaFA0YHQFaLwCX6TQuHQAuNtjR2PawD05LZeFzKeC7b/txPoLxU8Aj1BVkAf1wqw/uejeU9RsASaqYQGp+Dv8EAvjgdD9OAg9S14gQOPKED1XNWyv7+lT0VArxiVH0fCUEOqjr3JoKcImN/pYW2EOnQyUJTESBJkdpgGkV8Cj/owDDdx59A8Mf92FT+GpR+KSlBrt6ehE6+hL0pLp6AYbvfusE5FontFgUZ989UVAiDU+X0OsvQ0/EVy4g4MeOQ3a6Mn38wKHet3MkrofzZJMsFlzpeRVaeLF8ASPsb8Javy7nDXRVxdA7x7FpIZQXnrlP0yDJMoKvHVpZBKq23Qv3M8/nzQt6PIah93qhRxaLwvPNhbLmgGP7Drg694mHlVqKwcsWEBItD8DVvleM6WrhRQXUwBSsnpthvclDY++BZLdnflS9YxecrZ2QFGVZePDIYcq5yWuGK47k39NIzlCdDkHxNuYXiJzrz/xIrr4BFpdbfAFyTS1CSi1uf7IDrqeeheyoLihxubsD2sI8UuEFaItUKfen5mahRcLZl7nft7xAvjIQs+GFP2cLCmjRCL5p3oDN6nzR56xIYDl4ORJlCwyqDnT7Z5aFL5G4w4vN8dnVCwymatA9daVkeCkSJQv8qDtxcDKYF86AwKEuSDYbvB+doq/DlnMPJ6uvmzfmSJQk0E9D+OLVcEG4f38bwgNnxLmz9Wl4+z6HZLXm3JuYHMfE7i0ri8Ck3Y3Hx4L0lvYl8Et7H0Xk7NJ7Xe1d8H74GX2/2YyZmv8XY3euo4SUXJkAFyvtEbdc+CsDn2r3Ifrrz3nHvW7Pftzy/kmxdhSCly2Qlmj66Xf88dB2qP6LRme+jauuo67rIDyvHMN4i1esmvlK6QIUTrEISbKxDnDlPkk2BK6VIDhXXaddP6Vk0H6A9wSUn0WKFn2lCgiYbDEmFVXJYjWOuU1LcHudgAASSLS0FnD4dV4TksYxNEOqsMDwgAAxELToSFZFfGaiVWzGNV6MWM4Uyc5OE8wQCr2AqwmxIuoJowX3k5CjZSd6vvxhqcBj921Fc2g8C2Mwzf5sax7zNZZjSdkcCg6/EEgacAYzlLZvRk1kW7rm39iELwZHsgLPATN311rqb7trG+65dT2FXTEg4o1NoDinZKOYQ8ICFo4ADwMJpEwBDrnKIU+YMqZQ0pAbC4QwODwCf0Rd/BQ4IATagM46oI+CeiNPPVS40EDF6M/pJ78Ap+n0PL8Cp7sGs9asgQSFDLxBmKJ6STKBVSbcZsa10gKcJHi/Hv0PWqbBbaFH/AEAAAAASUVORK5CYII=' - - -def ExecuteCommandSubprocess(command, *args, wait=False): - # try: - if sys.platform == 'linux': - arg_string = '' - for arg in args: - arg_string += ' ' + str(arg) - sp = subprocess.Popen(['python3' + arg_string, ], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - else: - expanded_args = [] - for a in args: - expanded_args += a - sp = subprocess.Popen([command, expanded_args], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - if wait: - out, err = sp.communicate() - if out: - print(out.decode("utf-8")) - if err: - print(err.decode("utf-8")) - # except: pass - - -def get_image_bytes(image64): - image_file = io.BytesIO(base64.b64decode(image64)) - img = Image.open(image_file) - bio = io.BytesIO() - img.save(bio, format='PNG') - imgbytes = bio.getvalue() - return imgbytes - -def ShowMeTheButtons(): - - sg.SetOptions(auto_size_buttons=True, margins=(0,0), button_color=sg.COLOR_SYSTEM_DEFAULT) - - toolbar_buttons = [[sg.RButton('', image_data=get_image_bytes(close64),button_color=('white', 'black'), pad=(0,0), key='_close_'), - sg.RButton('', image_data=get_image_bytes(timer64), button_color=('white', 'black'), pad=(0, 0), key='_timer_'), - sg.RButton('', image_data=get_image_bytes(house64), button_color=('white', 'black'), pad=(0, 0), key='_house_'), - ]] - - # layout = toolbar_buttons - layout = [[sg.Frame('Launcher', toolbar_buttons,title_color='white', background_color='black')]] - - window = sg.Window('Toolbar', no_titlebar=True, grab_anywhere=True, background_color='black').Layout(layout) - - # ---===--- Loop taking in user input --- # - while True: - button, value = window.Read() - print(button) - if button == '_close_' or button is None: - break # exit button clicked - elif button == '_timer_': - pass # add your call to launch a timer program - elif button == '_cpu_': - pass # add your call to launch a CPU measuring utility -if __name__ == '__main__': - ShowMeTheButtons() - diff --git a/Demo_Toolbar/Mike_Toolbar.py b/Demo_Toolbar/Mike_Toolbar.py deleted file mode 100644 index 67af4517..00000000 --- a/Demo_Toolbar/Mike_Toolbar.py +++ /dev/null @@ -1,27 +0,0 @@ -import PySimpleGUI as sg -import os - -BUTTON_PATH = 'C:/Python/PycharmProjects/GooeyGUI/ButtonGraphics/Good ones/For toolbar' -button_names = ('close', 'cookbook', 'cpu', 'github', 'pysimplegui', 'run', 'storage', 'timer') - - -def ShowMeTheButtons(): - button_files = [os.path.join(BUTTON_PATH, b+'.png') for b in button_names] - - sg.SetOptions(auto_size_buttons=True, margins=(0,0), button_color=sg.COLOR_SYSTEM_DEFAULT) - - toolbar_buttons = [[sg.RButton('{}'.format(button_names[i]), image_size=(32,32), image_filename=f, pad=(0,0), tooltip=button_names[i]) for i, f in enumerate(button_files)],] - - layout = [[sg.Frame('', toolbar_buttons)]] - - form = sg.FlexForm('Toolbar', no_titlebar=True).Layout(layout) - - # ---===--- Loop taking in user input --- # - while True: - button, value = form.Read() - print(button) - if button == 'close' or button is None: - break # exit button clicked - -if __name__ == '__main__': - ShowMeTheButtons() \ No newline at end of file diff --git a/Demo_Toolbar/camera.png b/Demo_Toolbar/camera.png deleted file mode 100644 index 9f7cbc09..00000000 Binary files a/Demo_Toolbar/camera.png and /dev/null differ diff --git a/Demo_Toolbar/checkmark.png b/Demo_Toolbar/checkmark.png deleted file mode 100644 index e5f4d178..00000000 Binary files a/Demo_Toolbar/checkmark.png and /dev/null differ diff --git a/Demo_Toolbar/close.png b/Demo_Toolbar/close.png deleted file mode 100644 index 39166560..00000000 Binary files a/Demo_Toolbar/close.png and /dev/null differ diff --git a/Demo_Toolbar/cookbook.png b/Demo_Toolbar/cookbook.png deleted file mode 100644 index 726234af..00000000 Binary files a/Demo_Toolbar/cookbook.png and /dev/null differ diff --git a/Demo_Toolbar/cpu.png b/Demo_Toolbar/cpu.png deleted file mode 100644 index 6337c8a3..00000000 Binary files a/Demo_Toolbar/cpu.png and /dev/null differ diff --git a/Demo_Toolbar/download.png b/Demo_Toolbar/download.png deleted file mode 100644 index 53de7e07..00000000 Binary files a/Demo_Toolbar/download.png and /dev/null differ diff --git a/Demo_Toolbar/github.png b/Demo_Toolbar/github.png deleted file mode 100644 index 3245ab50..00000000 Binary files a/Demo_Toolbar/github.png and /dev/null differ diff --git a/Demo_Toolbar/house.png b/Demo_Toolbar/house.png deleted file mode 100644 index e4fbd085..00000000 Binary files a/Demo_Toolbar/house.png and /dev/null differ diff --git a/Demo_Toolbar/pysimplegui.png b/Demo_Toolbar/pysimplegui.png deleted file mode 100644 index 4fe82d1b..00000000 Binary files a/Demo_Toolbar/pysimplegui.png and /dev/null differ diff --git a/Demo_Toolbar/run.png b/Demo_Toolbar/run.png deleted file mode 100644 index 93d2892e..00000000 Binary files a/Demo_Toolbar/run.png and /dev/null differ diff --git a/Demo_Toolbar/storage.png b/Demo_Toolbar/storage.png deleted file mode 100644 index fe9f038a..00000000 Binary files a/Demo_Toolbar/storage.png and /dev/null differ diff --git a/Demo_Toolbar/timer.png b/Demo_Toolbar/timer.png deleted file mode 100644 index f2df8f43..00000000 Binary files a/Demo_Toolbar/timer.png and /dev/null differ diff --git a/ThemeMaker/Theme_Maker.py b/ThemeMaker/Theme_Maker.py deleted file mode 100644 index ff8c3130..00000000 --- a/ThemeMaker/Theme_Maker.py +++ /dev/null @@ -1,262 +0,0 @@ -import PySimpleGUI as sg -import color_themes - -""" - Program that is used to create new themes for use with PySimpleGUI's "Look and Feel" settings. - You are presented with a grid of mini-windows that is created for color palettes downloaded from https://colorhunt.co/palettes - The file color_themes.py contains a large dictionary of approx 1780 palettes. - - For each palette you are shown 4 candidate themes, 2 "light" and 2 "dark". The window shows 5 palettes so you'll have a - total of 20 candidate themes displayed in total. - Each candidate theme has a 3 options - The button color (text and background), the text color for Input/Multiline elements, - and the name of the theme when you save it. These you choose using the radio buttons and one input field. - To "save" one of these candidate themes, check the checkbox to the left of the layout, choose the radio buttons for button - & text settings and optionally change the theme name that is shown above the grid of OK buttons. By default the name starts - with either "Dark" or "Light" and is followed by the first 2 "tags" that were posted with the palette on the colorhunt site. - - After you've selected the themes you want to save from the window of 20 click any "OK" button in the window or close the - window with the "X". You will see the dictionary text in the Debug Window and the values will also be written to a file. - You'll then be shown the next group of 20 candidate themes. - - If you want to exit the program entirely, click any "Cancel" button the page. Note - cliicking "Cancel" will not save any - theme you have checked with the checkbox. You should only exit from a window you have not selected any themes for saving - - If a Theme is selected for saving, then the values for the LOOK_AND_FEEL dictionary are displayed in a debug window and are - also appended to the file new_theme_dict.py. You will need to edit the new_theme_dict.py file to get the syntax correct. - A "," or "}" may need to be added in order to make the table be correct. - - If you're using this program it's assumed you know what you're doing and understand the LOOK_AND_FEEL dictionary and can - figure out how to get the syntax correct for adding it to the main dictionary of themes. -""" - -#----------------- Window to get layout for window ---------# - -CANDIDATES_PER_ROW = 4 -PALETTES_PER_WINDOW = 5 -STARTING_PALETTE = 0 -sg.change_look_and_feel('Dark Blue 3') -layout = [ - [sg.T('Choose your window layout (default is a huge window)')], - [sg.In(default_text=CANDIDATES_PER_ROW),sg.T('Candidates Per Row')], - [sg.In(default_text=PALETTES_PER_WINDOW),sg.T('Palettes Per Window (4 candidates for each)')], - [sg.In(default_text=0),sg.T(f'Starting palette number of {len(color_themes.themes)} palettes')], - [sg.OK()]] -window = sg.Window('Choose Theme Layout', layout,default_element_size=(4,1)) -event, values = window.read() -window.close() - -if event is None: - sg.popup_no_buttons('Aborting....', no_titlebar=True, auto_close=True, keep_on_top=True) - exit() -try: - CANDIDATES_PER_ROW = int(values[0]) - PALETTES_PER_WINDOW = int(values[1]) - STARTING_PALETTE = int(values[2]) -except: - sg.popup_no_buttons('Bad input... Aborting....', no_titlebar=True, auto_close=True, keep_on_top=True) - exit() - -TOTAL_CANDIDATES_PER_PAGE = PALETTES_PER_WINDOW * 4 -#-----------------------------------------------------------# - -def rgb_to_hsl(r, g, b): - r = float(r) - g = float(g) - b = float(b) - high = max(r, g, b) - low = min(r, g, b) - h, s, v = ((high + low) / 2,)*3 - if high == low: - h = s = 0.0 - else: - d = high - low - l = (high + low) / 2 - s = d / (2 - high - low) if l > 0.5 else d / (high + low) - h = { - r: (g - b) / d + (6 if g < b else 0), - g: (b - r) / d + 2, - b: (r - g) / d + 4, - }[high] - h /= 6 - return h, s, v - -def hex_to_rgb(hex): - hex = hex.lstrip('#') - hlen = len(hex) - return tuple(int(hex[i:i + hlen // 3], 16) for i in range(0, hlen, hlen // 3)) - - -def sorted_tuple(tup, position): - tup.sort(key=lambda x: x[position]) - return tup - -sg.popup_quick_message('Hang on this could me a few moments....', background_color='red', text_color='white', keep_on_top=True) - -sg.LOOK_AND_FEEL_TABLE = {} # Entirely replace the look and feel table in PySimpleGUI -palette_counter = 0 -for key, colors in color_themes.themes.items(): - if palette_counter < STARTING_PALETTE: - palette_counter += 1 - continue - # Sort the colors from darkest to lightest - color_lightness_pairs = [] - for color in colors: - if type(color) in (tuple, list): - continue - r,g,b = hex_to_rgb(color) - lightness = (rgb_to_hsl(r=r, g=g, b=b))[2] - color_lightness_pairs.append((lightness, color)) - sorted_colors_tuples = sorted_tuple(color_lightness_pairs, 0) # sort the pairs by the first item (lightness) - scolors = [c for l, c in sorted_colors_tuples] # Colors sorted from darkest to lightest - # Create a "Dark" and a "Light" theme based on the sorted colors - sg.LOOK_AND_FEEL_TABLE['Dark'+key] = {'BACKGROUND': scolors[0], - 'TEXT': scolors[3], - 'INPUT': scolors[2], - 'TEXT_INPUT': '#000000', - 'SCROLL': scolors[2], - 'BUTTON': ('#FFFFFF', scolors[1]), - 'PROGRESS': sg.DEFAULT_PROGRESS_BAR_COLOR, - 'BORDER': 1, - 'SLIDER_DEPTH': 0, - 'PROGRESS_DEPTH': 0, - 'COLOR_LIST':scolors, - 'DESCRIPTION':colors[4]} - - sg.LOOK_AND_FEEL_TABLE['Light'+key] = {'BACKGROUND': scolors[3], - 'TEXT': scolors[0], - 'INPUT': scolors[1], - 'TEXT_INPUT': '#FFFFFF', - 'SCROLL': scolors[0], - 'BUTTON': ('#FFFFFF', scolors[2]), - 'PROGRESS': sg.DEFAULT_PROGRESS_BAR_COLOR, - 'BORDER': 1, - 'SLIDER_DEPTH': 0, - 'PROGRESS_DEPTH': 0, - 'COLOR_LIST': scolors, - 'DESCRIPTION':colors[4]} - - sg.LOOK_AND_FEEL_TABLE['Dark2'+key] = {'BACKGROUND': scolors[1], - 'TEXT': scolors[3], - 'INPUT': scolors[2], - 'TEXT_INPUT': '#000000', - 'SCROLL': scolors[2], - 'BUTTON': ('#FFFFFF', scolors[1]), - 'PROGRESS': sg.DEFAULT_PROGRESS_BAR_COLOR, - 'BORDER': 1, - 'SLIDER_DEPTH': 0, - 'PROGRESS_DEPTH': 0, - 'COLOR_LIST':scolors, - 'DESCRIPTION':colors[4]} - - - sg.LOOK_AND_FEEL_TABLE['Light2'+key] = {'BACKGROUND': scolors[2], - 'TEXT': scolors[0], - 'INPUT': scolors[1], - 'TEXT_INPUT': '#FFFFFF', - 'SCROLL': scolors[0], - 'BUTTON': ('#FFFFFF', scolors[2]), - 'PROGRESS': sg.DEFAULT_PROGRESS_BAR_COLOR, - 'BORDER': 1, - 'SLIDER_DEPTH': 0, - 'PROGRESS_DEPTH': 0, - 'COLOR_LIST': scolors, - 'DESCRIPTION':colors[4]} - - -WINDOW_BACKGROUND = 'lightblue' - -def sample_layout(theme_name, colors, description): - name = 'Dark' if theme_name.startswith('D') else 'Light' - name += "".join(description[:2]) - layout = [[sg.Text('Text element', size=(12,1)), sg.InputText(' '.join(colors),text_color='#000000' ),sg.Radio('',theme+'1', key='-INPUT_RAD0-'+theme, default=True, metadata='#000000'), - sg.Slider((0,10),size=(10,20), orientation='h')], - [sg.T(size=(12,1)), sg.InputText(colors[0], text_color='#FFFFFF'),sg.Radio('',theme+'1', key='-INPUT_RAD1-'+theme, metadata='#FFFFFF')], - [sg.T(size=(12,1)), sg.InputText(colors[0], text_color=colors[0]),sg.Radio('',theme+'1', key='-INPUT_RAD2-'+theme, metadata=colors[0])], - [sg.T(size=(12,1)),sg.InputText(colors[3], text_color=colors[3]),sg.Radio('',theme+'1', key='-INPUT_RAD3-'+theme, metadata=colors[3])], - [sg.T(', '.join(description)), sg.In(name, key='-NEW_THEME_NAME-'+theme)], - [sg.Button('OK'), sg.Radio('',theme+'2',key='-BTN_RAD1-'+theme, default=True, metadata=sg.DEFAULT_BUTTON_COLOR), - sg.Button('OK', button_color=('white', colors[0])),sg.Radio('',theme+'2',key='-BTN_RAD2-'+theme, metadata=('white', colors[0])), - sg.Button('OK', button_color=('black', colors[0])),sg.Radio('',theme+'2',key='-BTN_RAD9-'+theme, metadata=('black', colors[0])), - sg.Button('OK', button_color=('white', colors[3])),sg.Radio('', theme+'2', key='-BTN_RAD10-' + theme, metadata=('white', colors[3])), - sg.Button('OK', button_color=('black', colors[3])),sg.Radio('', theme+'2', key='-BTN_RAD11-' + theme, metadata=('black', colors[3]))], - [sg.Button('OK', button_color=(colors[0],colors[1])),sg.Radio('',theme+'2',key='-BTN_RAD3-'+theme, metadata=(colors[0], colors[1])), - sg.Button('OK', button_color=(colors[2],colors[1])),sg.Radio('',theme+'2',key='-BTN_RAD4-'+theme, metadata=(colors[2], colors[1])), - sg.Button('OK', button_color=(colors[3],colors[1])),sg.Radio('',theme+'2',key='-BTN_RAD5-'+theme, metadata=(colors[3], colors[1])), - sg.Button('OK', button_color=(colors[3],colors[0])),sg.Radio('',theme+'2',key='-BTN_RAD7-'+theme, metadata=(colors[3], colors[0])), - sg.Button('OK', button_color=(colors[0],colors[3])),sg.Radio('',theme+'2',key='-BTN_RAD8-'+theme, metadata=(colors[0], colors[3])), - sg.Button('Cancel', button_color=(colors[3], colors[2])),sg.Radio('',theme+'2',key='-BTN_RAD6-'+theme, metadata=(colors[3], colors[2])), - ] ] - return layout -# layout = [[sg.Text('Here is list of some themes', font='Default 18', background_color=WINDOW_BACKGROUND)]] -layout = [] -row = [] -layouts = [] -for count, theme in enumerate(sg.LOOK_AND_FEEL_TABLE.keys()): - sg.change_look_and_feel(theme) - if count and not(count % CANDIDATES_PER_ROW): - layout += [row] - row = [] - row += [sg.CB('',text_color='black', background_color=WINDOW_BACKGROUND, key='-CB-'+theme)] - row += [sg.Frame(theme, sample_layout(theme, sg.LOOK_AND_FEEL_TABLE[theme]['COLOR_LIST'], sg.LOOK_AND_FEEL_TABLE[theme]['DESCRIPTION']))] - if count and not (count % TOTAL_CANDIDATES_PER_PAGE): - if layout: - layouts.append(layout) - layout = [] -if row: - layout += [row] -if layout: - layouts.append(layout) - -for layout in layouts: - window = sg.Window('PySimpleGUI Theme Maker', layout, background_color=WINDOW_BACKGROUND, default_element_size=(30,1)) - event, values = window.read() - if event is not None and event.startswith('Cancel'): - break - for key, value in values.items(): - if type(key) is str and key.startswith('-CB-') and value: - theme = key[4:] - theme_entry = sg.LOOK_AND_FEEL_TABLE[theme] - if values['-INPUT_RAD1-'+theme]: - input_text_color = window['-INPUT_RAD1-'+theme].metadata - elif values['-INPUT_RAD2-'+theme]: - input_text_color = window['-INPUT_RAD2-'+theme].metadata - elif values['-INPUT_RAD3-'+theme]: - input_text_color = window['-INPUT_RAD3-'+theme].metadata - elif values['-INPUT_RAD0-'+theme]: - input_text_color = window['-INPUT_RAD0-'+theme].metadata - else: - print('** ERROR none of the radio buttons are true for input text **') - continue - - if values['-BTN_RAD1-'+theme]: - b_color = window['-BTN_RAD1-'+theme].metadata - elif values['-BTN_RAD2-'+theme]: - b_color = window['-BTN_RAD2-'+theme].metadata - elif values['-BTN_RAD3-'+theme]: - b_color = window['-BTN_RAD3-'+theme].metadata - elif values['-BTN_RAD4-'+theme]: - b_color = window['-BTN_RAD4-'+theme].metadata - elif values['-BTN_RAD5-'+theme]: - b_color = window['-BTN_RAD5-'+theme].metadata - elif values['-BTN_RAD6-'+theme]: - b_color = window['-BTN_RAD6-'+theme].metadata - elif values['-BTN_RAD7-'+theme]: - b_color = window['-BTN_RAD7-'+theme].metadata - elif values['-BTN_RAD8-'+theme]: - b_color = window['-BTN_RAD8-'+theme].metadata - elif values['-BTN_RAD9-'+theme]: - b_color = window['-BTN_RAD9-'+theme].metadata - elif values['-BTN_RAD10-'+theme]: - b_color = window['-BTN_RAD10-'+theme].metadata - elif values['-BTN_RAD11-'+theme]: - b_color = window['-BTN_RAD11-'+theme].metadata - else: - print('** ERROR none of the radio buttons are true for button color **') - continue - sg.LOOK_AND_FEEL_TABLE[theme]['TEXT_INPUT'] = input_text_color - sg.LOOK_AND_FEEL_TABLE[theme]['BUTTON'] = b_color - with open('new_theme_dict.py', 'a') as outfile: - outfile.write(f"'{values['-NEW_THEME_NAME-'+theme]}' : {sg.LOOK_AND_FEEL_TABLE[theme]},\n") - sg.Print(f"'{values['-NEW_THEME_NAME-'+theme]}' : {sg.LOOK_AND_FEEL_TABLE[theme]}\n") - window.close() - del window diff --git a/ThemeMaker/color_themes.py b/ThemeMaker/color_themes.py deleted file mode 100644 index 8aa98567..00000000 --- a/ThemeMaker/color_themes.py +++ /dev/null @@ -1,1782 +0,0 @@ -themes = { - '163372': ('#f4efd3', '#cccccc', '#c2b0c9', '#9656a1', ['Yellow', 'Grey', 'Purple', 'Pastel']), - '163318': ('#594a4e', '#e78fb3', '#ffc0ad', '#6fc1a5', ['Brown', 'Pink', 'Green', 'Vintage']), - '163537': ('#ff8ba7', '#ffc6c7', '#faeee7', '#c3f0ca', ['Pink', 'Green', 'Bright', 'Summer']), - '163154': ('#10316b', '#000000', '#e25822', '#ececeb', ['Blue', 'Orange', 'Retro']), - '163151': ('#a35638', '#e08f62', '#d7c79e', '#9dab86', ['Brown', 'Autumn', 'Summer', 'Warm']), - '163063': ('#ffac8e', '#fd7792', '#3f4d71', '#55ae95', ['Pink', 'Green', 'Retro']), - '162867': ('#1b2a49', '#465881', '#00909e', '#c9d1d3', ['Blue', 'Cold', 'Winter']), - '162930': ('#3fc5f0', '#42dee1', '#6decb9', '#eef5b2', ['Blue', 'Green', 'Yellow', 'Bright', 'Neon', 'Summer']), - '162807': ('#003f5c', '#472b62', '#bc4873', '#fb5b5a', ['Purple', 'Orange', 'Neon']), - '162836': ('#9be3de', '#beebe9', '#fffdf9', '#ffe3ed', ['Turquoise', 'Bright']), - '162790': ('#110133', '#00918e', '#4dd599', '#ffdc34', ['Turquoise', 'Green', 'Yellow']), - '162677': ('#bd574e', '#fa877f', '#ffad87', '#dedef0', ['Red', 'Pink', 'Skin', 'Pastel']), - '162174': ('#f45905', '#c70d3a', '#512c62', '#45969b', ['Orange', 'Turquoise']), - '162777': ('#eafbea', '#6f9a8d', '#1f6650', '#ea5e5e', ['Green']), - '162734': ('#010038', '#293a80', '#537ec5', '#f39422', ['Blue', 'Orange']), - '162116': ('#fff4e4', '#f88020', '#d1274b', '#3d0e1e', ['Orange']), - '162076': ('#f35588', '#ffbbb4', '#71a95a', '#007944', ['Pink', 'Green']), - '161920': ('#39375b', '#745c97', '#d597ce', '#f5b0cb', ['Purple', 'Pastel']), - '161696': ('#f8f8f8', '#f1d6ab', '#e3b04b', '#2b2b28', ['Grey', 'Yellow']), - '161649': ('#380e7f', '#6915cf', '#d62196', '#e497cd', ['Purple']), - '161263': ('#dcffcc', '#9fdfcd', '#baabda', '#d79abc', ['Green', 'Purple', 'Bright', 'Summer', 'Pastel']), - '160952': ('#8f4426', '#de6b35', '#f9b282', '#64ccda', ['Brown', 'Orange', 'Warm']), - '160620': ('#851de0', '#aa26da', '#c355f5', '#f1fa3c', ['Purple', 'Yellow', 'Neon']), - '160646': ('#ffe7d1', '#f6c89f', '#4b8e8d', '#396362', ['Skin', 'Turquoise']), - '160243': ('#0c093c', '#df42d1', '#eea5f6', '#fad6d6', ['Purple']), - '160589': ('#e5d8bf', '#94aa2a', '#e47312', '#d55252', ['Green', 'Orange', 'Summer', 'Vintage']), - '160292': ('#c2e8ce', '#f2eee5', '#f6ad7b', '#be7575', ['Green', 'Orange', 'Brown', 'Pastel', 'Summer']), - '160127': ('#090057', '#57007e', '#c400c6', '#ffa069', ['Purple']), - '160163': ('#5eb7b7', '#96d1c7', '#fc7978', '#ffafb0', ['Turquoise', 'Red']), - '161876': ('#dfddc7', '#f58b54', '#a34a28', '#211717', ['Grey', 'Orange', 'Autumn', 'Halloween']), - '162500': ('#6807f9', '#9852f9', '#c299fc', '#ffd739', ['Purple', 'Yellow']), - '160018': ('#293462', '#00818a', '#ec9b3b', '#f7be16', ['Blue', 'Turquoise', 'Orange', 'Yellow']), - '159891': ('#efe9cc', '#eadea6', '#f6cd90', '#deb881', ['Yellow', 'Bright', 'Pastel', 'Summer', 'Skin']), - '159652': ('#003f5c', '#58508d', '#bc5090', '#ff6361', ['Purple', 'Orange']), - '159621': ('#494ca2', '#8186d5', '#c6cbef', '#e3e7f1', ['Blue']), - '159988': ('#ffd369', '#e26241', '#940a37', '#5b0909', ['Yellow', 'Orange', 'Warm']), - '159620': ('#f54291', '#ff78ae', '#ffa0d2', '#fff8cd', ['Pink', 'Bright']), - '159618': ('#f1d4d4', '#ddb6c6', '#ac8daf', '#484c7f', ['Skin', 'Pink', 'Purple', 'Pastel']), - '159679': ('#f0134d', '#ff6f5e', '#f5f0e3', '#40bfc1', ['Red', 'Orange', 'Turquoise']), - '159617': ('#ecfcff', '#b2fcff', '#5edfff', '#3e64ff', ['Blue', 'Neon']), - '159378': ('#fff1e9', '#ffd5d5', '#fc7fb2', '#45454d', ['Pink', 'Wedding', 'Skin']), - '159233': ('#3c4245', '#5f6769', '#719192', '#dfcdc3', ['Grey', 'Turquoise', 'Cold']), - '159131': ('#7c0a02', '#b22222', '#e25822', '#f1bc31', ['Red', 'Orange', 'Warm']), - '159619': ('#e6f8f9', '#b1e8ed', '#edb5f5', '#e86ed0', ['Blue', 'Pink', 'Bright']), - '158462': ('#443737', '#272121', '#ff0000', '#ff4d00', ['Brown', 'Red', 'Dark', 'Warm', 'Halloween']), - '158806': ('#5d1451', '#2f416d', '#14868c', '#94ceca', ['Blue', 'Cold']), - '158845': ('#ffe7ad', '#db75c5', '#a05f96', '#6a1051', ['Yellow', 'Purple']), - '158955': ('#2a1a5e', '#f45905', '#fb9224', '#fbe555', ['Blue', 'Orange', 'Yellow', 'Sunset']), - '159070': ('#f9d5bb', '#f66767', '#d35656', '#3c3d47', ['Orange', 'Red', 'Warm']), - '158356': ('#470938', '#1a3e59', '#5c94bd', '#f2d6eb', ['Blue', 'Cold']), - '158058': ('#5026a7', '#8d448b', '#cc6a87', '#eccd8f', ['Purple', 'Sunset']), - '158271': ('#233714', '#6b591d', '#efcfb6', '#fdeced', ['Brown', 'Skin']), - '158349': ('#6d0c74', '#7f78d2', '#d2d0fe', '#fdecff', ['Purple', 'Pink']), - '158293': ('#42b883', '#347474', '#35495e', '#ff7e67', ['Green', 'Orange']), - '158245': ('#ffdfdf', '#fbc1bc', '#315b96', '#233567', ['Pink', 'Blue', 'Skin']), - '157808': ('#512c96', '#3c6f9c', '#dd6892', '#f9c6ba', ['Purple', 'Turquoise', 'Pink', 'Vintage']), - '158095': ('#445c3c', '#fda77f', '#c9d99e', '#fae8c8', ['Green', 'Orange', 'Summer', 'Pastel']), - '157642': ('#ffbbcc', '#ffcccc', '#ffddcc', '#ffeecc', ['Pink', 'Bright', 'Skin', 'Pastel']), - '157748': ('#1a2849', '#505bda', '#b063c5', '#ffaac3', ['Blue', 'Purple', 'Pink', 'Cold']), - '157673': ('#43ab92', '#f75f00', '#c93838', '#512c62', ['Turquoise', 'Orange', 'Retro']), - '157400': ('#f9f9f9', '#f6ecbf', '#caadde', '#c886e5', ['Yellow', 'Purple', 'Bright', 'Pastel']), - '157216': ('#504658', '#f0decb', '#ffb5b5', '#ce2e6c', ['Grey', 'Pink', 'Skin']), - '157179': ('#394a6d', '#3c9d9b', '#52de97', '#c0ffb3', ['Turquoise', 'Green', 'Cold']), - '157118': ('#23374d', '#1089ff', '#e5e5e5', '#eeeeee', ['Blue', 'Grey', 'Cold']), - '156896': ('#3b064d', '#8105d8', '#ed0cef', '#fe59d7', ['Purple', 'Neon']), - '157018': ('#bbeaa6', '#e3c878', '#ed9a73', '#e688a1', ['Green', 'Orange', 'Pastel', 'Summer', 'Warm']), - '156898': ('#f7e8f6', '#f1c6e7', '#e5b0ea', '#bd83ce', ['Pink', 'Purple', 'Pastel', 'Wedding']), - '156759': ('#d9eeec', '#64b2cd', '#3c70a4', '#da9833', ['Blue', 'Summer']), - '156692': ('#b2e4d5', '#f2a6a6', '#b18ea6', '#e7f3ee', ['Turquoise', 'Pink', 'Pastel', 'Bright']), - '156569': ('#f6f078', '#01d28e', '#434982', '#730068', ['Yellow', 'Green', 'Blue', 'Summer']), - '156488': ('#fcf9ea', '#badfdb', '#f8a978', '#ffc5a1', ['Orange', 'Bright', 'Pastel', 'Summer']), - '156620': ('#202040', '#202060', '#602080', '#b030b0', ['Black', 'Purple', 'Dark']), - '156447': ('#4baea0', '#b6e6bd', '#f1f0cf', '#f0c9c9', ['Green', 'Pastel', 'Bright']), - '156357': ('#c70d3a', '#ed5107', '#230338', '#02383c', ['Red', 'Orange', 'Warm']), - '156338': ('#ddf796', '#f3fe7e', '#979797', '#757575', ['Yellow', 'Grey']), - '156289': ('#47e4bb', '#ec9b3b', '#e8647c', '#000000', ['Turquoise', 'Orange', 'Retro']), - '156039': ('#ecf4f3', '#d1eecc', '#76dbd1', '#57a99a', ['Green', 'Turquoise']), - '155973': ('#e4f2f0', '#99d8d0', '#70416d', '#170a19', ['Turquoise', 'Purple', 'Pastel', 'Cold']), - '156179': ('#fb0091', '#fb8691', '#fb9e91', '#fbda91', ['Pink', 'Orange', 'Skin']), - '156086': ('#f7f7f7', '#5d5d5d', '#a0c334', '#e5d429', ['Grey', 'Green']), - '155497': ('#d2fafb', '#51dacf', '#41aaa8', '#2c003e', ['Blue', 'Turquoise', 'Cold']), - '156010': ('#91b029', '#e6a400', '#eaebd8', '#ffffea', ['Green', 'Orange', 'Summer']), - '155912': ('#fa5477', '#ef4b4b', '#f2e3c9', '#7ecfc0', ['Red']), - '155496': ('#d2fafb', '#6bc5d2', '#105e62', '#b5525c', ['Blue', 'Winter', 'Cold']), - '155144': ('#000272', '#341677', '#a32f80', '#ff6363', ['Blue', 'Dark', 'Neon']), - '154853': ('#f77754', '#584b42', '#537d91', '#a4d1c8', ['Orange', 'Brown', 'Turquoise', 'Vintage']), - '155460': ('#1fab89', '#ff8080', '#ffba92', '#c6f1d6', ['Green', 'Red']), - '155435': ('#010a43', '#f3d3d3', '#eda593', '#ff3f98', ['Pink', 'Skin']), - '154559': ('#b7e778', '#40dab2', '#be6283', '#ed7575', ['Green', 'Red', 'Vintage', 'Spring']), - '155182': ('#45454d', '#ff4893', '#ffd5d5', '#fff1e9', ['Pink']), - '155146': ('#ebefd0', '#32dbc6', '#49beb7', '#ff502f', ['Turquoise', 'Orange', 'Vintage']), - '156756': ('#f6f6f6', '#eae9e9', '#d4d7dd', '#420000', ['Grey']), - '155139': ('#01024e', '#543864', '#8b4367', '#ff6464', ['Dark']), - '155241': ('#f0dd92', '#ffffc5', '#d6e4aa', '#83b582', ['Yellow', 'Summer', 'Pastel']), - '153787': ('#eb7070', '#fec771', '#e6e56c', '#64e291', ['Red', 'Orange', 'Green', 'Summer']), - '155006': ('#f0d78c', '#fcfafa', '#64c4ed', '#4f81c7', ['Yellow', 'Blue', 'Summer']), - '154852': ('#160f30', '#241663', '#a72693', '#eae7af', ['Black', 'Blue', 'Purple', 'Dark']), - '154258': ('#c5f0a4', '#35b0ab', '#226b80', '#f34573', ['Green']), - '155005': ('#b6ffea', '#fce2ae', '#ffb3b3', '#ffdcf7', ['Turquoise', 'Bright', 'Pastel', 'Skin']), - '154644': ('#3a1f5d', '#c83660', '#e15249', '#f6d365', ['Blue', 'Red', 'Yellow', 'Sunset']), - '154242': ('#207561', '#589167', '#a0cc78', '#da4302', ['Green']), - '154922': ('#61f2f5', '#ffffff', '#e0e0e0', '#723881', ['Blue', 'Grey', 'Purple', 'Neon', 'Bright']), - '154209': ('#6e2142', '#943855', '#e16363', '#ffd692', ['Warm', 'Skin']), - '153879': ('#ffcbcb', '#ffb5b5', '#407088', '#132743', ['Pink', 'Blue', 'Vintage']), - '154142': ('#fcf9ea', '#badfdb', '#49beb7', '#ff8a5c', ['Blue', 'Orange', 'Summer']), - '154222': ('#200f21', '#382039', '#5a3d5c', '#f638dc', ['Black', 'Purple', 'Dark']), - '153705': ('#9cf196', '#eceba7', '#ebce95', '#edaaaa', ['Green', 'Yellow', 'Pastel']), - '153606': ('#042f4b', '#fff6da', '#fbc99d', '#ed1250', ['Orange', 'Skin']), - '154210': ('#ecfcff', '#b2fcff', '#5edfff', '#3e64ff', ['Blue', 'Cold', 'Neon']), - '153362': ('#ebfffb', '#ff5858', '#61234e', '#032535', ['Red', 'Retro']), - '153353': ('#7ecfc0', '#f2e3c9', '#ec8f6a', '#ef4b4b', ['Turquoise', 'Orange']), - '152950': ('#f9e090', '#ff935c', '#dc5353', '#a72461', ['Yellow', 'Orange', 'Warm', 'Gold']), - '154144': ('#c7f0db', '#8bbabb', '#6c7b95', '#464159', ['Turquoise', 'Cold']), - '152872': ('#faf5ef', '#d7d1c9', '#99b19c', '#672f2f', ['Grey', 'Winter']), - '152856': ('#ffb997', '#f67e7d', '#843b62', '#0b032d', ['Warm', 'Orange']), - '153796': ('#293462', '#216583', '#00818a', '#f7be16', ['Blue', 'Turquoise', 'Cold']), - '152973': ('#696464', '#e9e5dd', '#d04925', '#992e24', ['Grey', 'Orange', 'Skin']), - '152863': ('#007065', '#00a79d', '#f5c181', '#ffeecf', ['Turquoise', 'Yellow', 'Summer']), - '152733': ('#cf455c', '#ffdd67', '#ff8a5c', '#444444', ['Red', 'Yellow', 'Orange', 'Warm']), - '152777': ('#f6edcf', '#f0dab1', '#daf1f9', '#a4d7e1', ['Blue', 'Skin', 'Pastel', 'Bright', 'Summer']), - '152664': ('#ff8080', '#ffba92', '#e0f5b9', '#c6f1d6', ['Red', 'Pastel', 'Bright', 'Summer']), - '152420': ('#f9f6f2', '#f1d6ab', '#a0855b', '#38470b', ['Brown', 'Skin']), - '152310': ('#eaeaea', '#a1dd70', '#00bdaa', '#8559a5', ['Grey', 'Green']), - '153118': ('#44000d', '#83142c', '#ad1d45', '#f9d276', ['Brown', 'Dark', 'Warm']), - '152232': ('#08ffc8', '#fff7f7', '#dadada', '#204969', ['Turquoise', 'Neon', 'Grey', 'Cold']), - '152139': ('#ffb6b9', '#fae3d9', '#bbded6', '#8ac6d1', ['Pink', 'Pastel']), - '152965': ('#252525', '#ff0000', '#af0404', '#414141', ['Black', 'Red', 'Neon', 'Dark']), - '151744': ('#fffcc1', '#fdeaab', '#cba1d2', '#ab72c0', ['Yellow', 'Purple', 'Summer']), - '152688': ('#2d3561', '#c05c7e', '#f3826f', '#ffb961', ['Orange', 'Warm', 'Sunset']), - '153137': ('#f4f6f6', '#ff9c91', '#cd3f3e', '#1c2938', ['Grey', 'Orange', 'Skin', 'Wedding']), - '151774': ('#f5b5fc', '#96f7d2', '#f0f696', '#fcb1b1', ['Purple', 'Neon', 'Pastel', 'Retro', 'Summer']), - '152714': ('#f8f8f8', '#50b6bb', '#45969b', '#f96d15', ['Turquoise', 'Orange', 'Retro']), - '152509': ('#bb1542', '#eb5f5d', '#fabc74', '#239f95', ['Red']), - '151338': ('#fff1ac', '#f9bcdd', '#d5a4cf', '#b689b0', ['Yellow', 'Pink', 'Purple', 'Pastel', 'Spring']), - '152246': ('#540e33', '#de356a', '#fdc8b7', '#6e9086', ['Red', 'Vintage']), - '151359': ('#f38eff', '#ff00c8', '#ffcece', '#fff0f0', ['Pink', 'Neon', 'Bright']), - '152282': ('#f9f3ec', '#63aabc', '#ed3833', '#60204b', ['Turquoise', 'Red', 'Vintage']), - '152027': ('#d3f6f3', '#f9fce1', '#fee9b2', '#fbd1b7', ['Blue', 'Yellow', 'Bright', 'Pastel', 'Summer']), - '151976': ('#293462', '#216583', '#f76262', '#fff1c1', ['Blue', 'Retro']), - '151885': ('#f4ff61', '#a8ff3e', '#32ff6a', '#27aa80', ['Yellow', 'Green', 'Neon', 'Bright', 'Summer']), - '151784': ('#60a9a6', '#caf2d7', '#f5fec0', '#fddede', ['Turquoise', 'Bright', 'Summer', 'Pastel']), - '151197': ('#f7e8e8', '#f2a2e4', '#f090d9', '#ea7dc7', ['Pink', 'Skin']), - '152058': ('#e42c64', '#614ad3', '#2d248a', '#121b74', ['Red', 'Blue']), - '151637': ('#aeeff0', '#f1f0d1', '#f0e3c4', '#daa592', ['Blue', 'Beach', 'Pastel']), - '151883': ('#ca5fa6', '#f36886', '#fa8282', '#ffaf65', ['Purple', 'Red', 'Warm', 'Wedding']), - '151737': ('#fdef96', '#f7b71d', '#afa939', '#2b580c', ['Yellow', 'Orange', 'Green', 'Summer', 'Warm']), - '151393': ('#f2f6f5', '#c8dad3', '#93b5b3', '#63707e', ['Grey', 'Vintage']), - '151198': ('#fac0e1', '#caa5f1', '#59d4e8', '#39bdc8', ['Pink', 'Turquoise', 'Paste']), - '150983': ('#dff0ea', '#95adbe', '#574f7d', '#4f3a65', ['Blue', 'Cold', 'Winter', 'Grey']), - '150928': ('#010059', '#52437b', '#ff7a8a', '#fcf594', ['Purple']), - '150643': ('#fafdcb', '#aee7e8', '#28c3d4', '#248ea9', ['Yellow', 'Blue', 'Summer']), - '150168': ('#17223b', '#263859', '#6b778d', '#ff6768', ['Dark']), - '149737': ('#f1d4d4', '#ddb6c6', '#ac8daf', '#484c7f', ['Pink', 'Purple', 'Skin', 'Pastel']), - '149522': ('#f6ef98', '#23eae6', '#1b7fbd', '#112f91', ['Blue', 'Summer']), - '149558': ('#e6f8f9', '#b1e8ed', '#edb5f5', '#e86ed0', ['Blue', 'Purple', 'Cold']), - '149559': ('#525252', '#414141', '#313131', '#ca3e47', ['Grey', 'Dark']), - '149560': ('#f4f4f4', '#eadca6', '#e2c275', '#c36a2d', ['Grey', 'Brown', 'Skin', 'Pastel']), - '149616': ('#090088', '#930077', '#e4007c', '#ffbd39', ['Blue', 'Red']), - '148495': ('#f2f4d1', '#b2d3be', '#89a3b2', '#5e6073', ['Grey']), - '148705': ('#f5f687', '#fcfdd8', '#e2bebe', '#b96b9f', ['Green', 'Purple']), - '148116': ('#f2f4f6', '#1ee3cf', '#6b48ff', '#0d3f67', ['Grey', 'Turquoise', 'Purple', 'Neon']), - '148970': ('#ff487e', '#ff9776', '#ffd5be', '#ffedff', ['Pink', 'Orange', 'Skin', 'Spring']), - '148452': ('#c1f6e7', '#ffcbcb', '#bb7171', '#4e3440', ['Turquoise', 'Pink', 'Skin', 'Vintage']), - '148361': ('#fff78f', '#22b9ca', '#0c99c1', '#f30cd4', ['Yellow', 'Turquoise', 'Purple', 'Retro']), - '148314': ('#ffc6be', '#ffa1c5', '#a773c3', '#854777', ['Pink', 'Purple', 'Warm']), - '147884': ('#f1f4df', '#10eaf0', '#0028ff', '#24009c', ['Blue', 'Cold', 'Neon']), - '148160': ('#e6f0b6', '#b8e9c0', '#6384b3', '#684949', ['Green']), - '147708': ('#064acb', '#366ed8', '#f3a953', '#f2f3f3', ['Blue']), - '147876': ('#293462', '#a64942', '#fe5f55', '#fff1c1', ['Red', 'Warm']), - '148315': ('#8a00d4', '#d527b7', '#ff82c3', '#ffc46b', ['Purple']), - '147615': ('#553c8b', '#9ea9f0', '#ccc1ff', '#ffeafe', ['Purple']), - '147574': ('#f6f6f6', '#bdf2d5', '#7ad9f5', '#5d13e7', ['Grey', 'Green', 'Turquoise']), - '147387': ('#454d66', '#009975', '#58b368', '#d9d872', ['Green']), - '147578': ('#fcf9ec', '#b0f4e6', '#67eaca', '#12d3cf', ['Turquoise', 'Bright', 'Summer']), - '147532': ('#2d132c', '#801336', '#c72c41', '#ee4540', ['Dark', 'Black', 'Red']), - '147323': ('#5bd1d7', '#348498', '#004d61', '#ff502f', ['Blue']), - '147389': ('#b0deff', '#ffc5a1', '#ffd19a', '#fff8a6', ['Blue', 'Orange', 'Skin', 'Bright', 'Pastel']), - '147169': ('#fab95b', '#71a0a5', '#665c84', '#212121', ['Orange', 'Turquoise']), - '147205': ('#f7ff56', '#94fc13', '#4be3ac', '#032d3c', ['Yellow', 'Green', 'Bright', 'Neon', 'Summer']), - '147179': ('#004a2f', '#002f35', '#ff6337', '#ffa323', ['Green', 'Orange']), - '147250': ('#eeeeee', '#dedede', '#ff4949', '#c10000', ['Grey', 'Red']), - '145544': ('#8adfdc', '#313848', '#735372', '#8f758e', ['Turquoise', 'Vintage']), - '145468': ('#22eaca', '#b31e6f', '#ee5a5a', '#ff9e74', ['Turquoise', 'Orange', 'Retro', 'Neon']), - '147299': ('#d2f3e0', '#feb9c8', '#f6a7ba', '#f5fbf1', ['Green', 'Pink', 'Bright', 'Pastel']), - '145393': ('#e41749', '#f5587b', '#ff8a5c', '#fff591', ['Red', 'Pink', 'Orange', 'Yellow', 'Neon']), - '145446': ('#beeef7', '#6fc2d0', '#373a6d', '#ff8246', ['Blue', 'Orange']), - '145389': ('#b206b0', '#e41749', '#f5587b', '#ff8a5c', ['Purple', 'Red', 'Warm']), - '145355': ('#33313b', '#4592af', '#e3c4a8', '#f6f5f5', ['Black', 'Turquoise', 'Grey', 'Vintage']), - '145454': ('#f3c1c6', '#f0f69f', '#b0e0a8', '#d8eff0', ['Pink', 'Bright', 'Pastel', 'Spring']), - '145313': ('#bfcd7e', '#ee7777', '#8e2e6a', '#311054', ['Orange', 'Vintage', 'Wedding']), - '145229': ('#211717', '#a34a28', '#f58b54', '#dfddc7', ['Black', 'Brown', 'Orange', 'Skin', 'Warm']), - '144444': ('#ffeaa5', '#226b80', '#40a798', '#ffebd3', ['Yellow', 'Turquoise', 'Retro']), - '145322': ('#fff3a3', '#ff7bb0', '#ff3e6d', '#7572f4', ['Yellow', 'Red', 'Spring', 'Bright', 'Neon']), - '145088': ('#6c5ce7', '#7b88ff', '#fdcb6e', '#fff3b1', ['Blue', 'Yellow', 'Summer']), - '144698': ('#103c42', '#02576c', '#05a19c', '#ffe837', ['Turquoise']), - '144599': ('#e6d385', '#5c7658', '#681313', '#d25959', ['Yellow', 'Green', 'Red']), - '144615': ('#866ec7', '#8f71ff', '#82acff', '#b7fbff', ['Purple', 'Blue', 'Cold']), - '144758': ('#7fa99b', '#f6e79c', '#f79c1d', '#9c2c2c', ['Yellow', 'Orange', 'Vintage']), - '144942': ('#010059', '#107595', '#fdbfb3', '#fcf594', ['Blue']), - '144598': ('#ab93c9', '#d698b9', '#eda1ab', '#ffbea3', ['Pastel', 'Skin']), - '144332': ('#560d0d', '#76a21e', '#c6cf65', '#f3ff93', ['Brown', 'Green', 'Vintage']), - '144426': ('#7189bf', '#df7599', '#ffc785', '#72d6c9', ['Blue', 'Pastel', 'Vintage']), - '144330': ('#ebefd0', '#32dbc6', '#49beb7', '#085f63', ['Turquoise', 'Cold']), - '145074': ('#ff0b55', '#d61d4e', '#323232', '#ffdee6', ['Red']), - '144399': ('#222831', '#393e46', '#d65a31', '#eeeeee', ['Black', 'Grey', 'Orange', 'Dark', 'Halloween']), - '144327': ('#f5e1da', '#f1f1f1', '#49beb7', '#085f63', ['Pink', 'Skin', 'Turquoise']), - '144191': ('#e8e8e8', '#5588a3', '#145374', '#00334e', ['Grey', 'Blue', 'Cold', 'Winter']), - '143744': ('#a9eec2', '#fad284', '#f38181', '#705772', ['Green', 'Orange', 'Vintage', 'Summer']), - '144541': ('#7f4782', '#aa5c9f', '#e2598b', '#fdd043', ['Purple']), - '143675': ('#616f39', '#ffd98e', '#ffb677', '#ff8364', ['Green', 'Orange', 'Summer', 'Skin', 'Pastel']), - '143590': ('#0c084c', '#096386', '#00b7a8', '#f0eec8', ['Blue', 'Turquoise', 'Cold', 'Winter']), - '143563': ('#f9f8eb', '#76b39d', '#05004e', '#fd5f00', ['Green', 'Orange', 'Retro']), - '143360': ('#eaf5ff', '#a9c6de', '#247e6c', '#e4c666', ['Blue']), - '143564': ('#240041', '#900048', '#ff4057', '#ff8260', ['Red', 'Warm']), - '143359': ('#fffde8', '#f7e0a3', '#f09c67', '#4c8492', ['Yellow', 'Orange', 'Skin']), - '143259': ('#f2eee0', '#c8e6f5', '#5ca0d3', '#5e0a0a', ['Blue']), - '144179': ('#f1e4e4', '#15cda8', '#099a97', '#9764c7', ['Grey', 'Green', 'Purple', 'Vintage']), - '144326': ('#085f63', '#49beb7', '#facf5a', '#ff5959', ['Turquoise', 'Yellow', 'Red', 'Retro']), - '143269': ('#305f72', '#f1d1b5', '#f0b7a4', '#f18c8e', ['Skin', 'Pastel']), - '143225': ('#fff5eb', '#f6e0b3', '#dbcc8f', '#4e4e4e', ['Yellow', 'Skin']), - '142991': ('#d7f7f5', '#75cac3', '#2a6171', '#f34573', ['Turquoise', 'Cold']), - '142837': ('#f0e9e9', '#c19191', '#aa7070', '#8b5d5d', ['Brown', 'Skin']), - '142663': ('#ececec', '#9fd3c7', '#385170', '#142d4c', ['Grey', 'Turquoise', 'Blue', 'Cold', 'Winter', 'Pastel']), - '142721': ('#f2eee0', '#c8e6f5', '#5ca0d3', '#6d3939', ['Blue', 'Summer']), - '142797': ('#fffbbe', '#eec1ea', '#be97dc', '#a374d5', ['Yellow', 'Pink', 'Purple', 'Pastel', 'Bright']), - '142073': ('#eaeaea', '#00bdaa', '#257aa6', '#621e81', ['Grey', 'Turquoise']), - '142677': ('#444444', '#f30067', '#00d1cd', '#eaeaea', ['Grey', 'Red', 'Turquoise', 'Neon']), - '142173': ('#c5fad9', '#aceacf', '#f77fee', '#db66e4', ['Green', 'Purple']), - '141859': ('#fffeec', '#aeddcd', '#e4508f', '#556fb5', ['Yellow', 'Green', 'Red', 'Blue', 'Pastel', 'Spring']), - '141761': ('#00028c', '#21aa93', '#01676b', '#ffc3e7', ['Blue', 'Green', 'Pink', 'Vintage']), - '141715': ('#5a3921', '#6b8c42', '#7bc67b', '#ffffb5', ['Brown', 'Green']), - '142059': ('#ffc15e', '#8158fc', '#692db7', '#34314f', ['Purple']), - '141682': ('#480032', '#df0054', '#ff8b6a', '#ffd6c2', ['Brown', 'Red', 'Orange', 'Warm', 'Halloween']), - '141714': ('#302387', '#ff3796', '#00faac', '#fffdaf', ['Blue', 'Pink', 'Green', 'Neon', 'Retro']), - '141668': ('#ff62a5', '#ffe5ae', '#6b76ff', '#dee0d9', ['Pink', 'Yellow', 'Grey', 'Retro']), - '141642': ('#f5c7f7', '#c54fa7', '#8d309b', '#3426a4', ['Pink', 'Purple']), - '141641': ('#f9fd50', '#85ef47', '#00bd56', '#207dff', ['Yellow', 'Green', 'Blue', 'Neon', 'Bright', 'Summer']), - '141534': ('#183661', '#1c4b82', '#dd6b4d', '#dae1e7', ['Blue', 'Orange']), - '141624': ('#7fe7cc', '#dfe38e', '#efca8c', '#f17e7e', ['Turquoise', 'Yellow', 'Red', 'Pastel']), - '141287': ('#e7eaf6', '#a2a8d3', '#38598b', '#113f67', ['Blue', 'Grey', 'Cold', 'Winter']), - '141416': ('#11144c', '#3a9679', '#fabc60', '#e16262', ['Green', 'Yellow', 'Red', 'Retro']), - '141096': ('#e3c4a8', '#4592af', '#226089', '#000000', ['Brown', 'Blue']), - '141219': ('#f6f5f5', '#e9e4e6', '#3bb4c1', '#048998', ['Grey', 'Turquoise']), - '140793': ('#dadddf', '#f69314', '#c40b13', '#621295', ['Grey', 'Orange', 'Purple']), - '140815': ('#ffd7e8', '#f2c0ff', '#bf9fee', '#866ec7', ['Pink', 'Purple']), - '140770': ('#f8b739', '#f3dcad', '#e44985', '#bd245f', ['Yellow', 'Pink']), - '141031': ('#f54291', '#ff78ae', '#ffa0d2', '#fff8cd', ['Pink', 'Yellow']), - '141288': ('#f3f9fb', '#87c0cd', '#226597', '#113f67', ['Blue', 'Cold', 'Winter']), - '141044': ('#1d1919', '#ffce76', '#0075f6', '#0900c3', ['Black', 'Yellow', 'Blue']), - '140056': ('#eeeeee', '#d8cbbb', '#bb8fa9', '#560764', ['Grey', 'Purple', 'Pastel']), - '139817': ('#cdffeb', '#ffaaaa', '#c7004c', '#8f1537', ['Red', 'Bright']), - '139648': ('#494ca2', '#8186d5', '#c6cbef', '#e3e7f1', ['Purple', 'Cold', 'Winter']), - '139838': ('#ff5d9e', '#8f71ff', '#82acff', '#8bffff', ['Pink', 'Purple', 'Blue', 'Bright', 'Neon']), - '140436': ('#33313b', '#62374e', '#007880', '#fdc57b', ['Vintage']), - '140707': ('#fcd307', '#1c1259', '#ee4266', '#d5daeb', ['Yellow', 'Red', 'Grey', 'Retro']), - '140769': ('#dbe9b7', '#fdfdf6', '#f4dada', '#b8b2a6', ['Green', 'Pink', 'Bright', 'Pastel', 'Spring', 'Wedding']), - '141021': ('#b7fbff', '#fff6be', '#ffe0a3', '#ffa1ac', ['Blue', 'Yellow', 'Summer', 'Bright', 'Spring']), - '139632': ('#421b9b', '#a06ee1', '#cbbcf6', '#cef9e2', ['Purple', 'Green', 'Retro']), - '141100': ('#022c43', '#053f5e', '#115173', '#ffd700', ['Blue', 'Dark', 'Yellow', 'Night']), - '140495': ('#faf562', '#f36a7b', '#b824a4', '#aaaaaa', ['Yellow', 'Purple', 'Grey']), - '140172': ('#352961', '#774181', '#e6b2c6', '#f6e5e5', ['Purple', 'Pink']), - '140155': ('#f8f1f1', '#d2c8c8', '#a3816a', '#0a065d', ['Grey', 'Winter', 'Skin']), - '140154': ('#1b1919', '#616f39', '#a7d129', '#f8eeb4', ['Black', 'Green']), - '140700': ('#ffe6eb', '#defcfc', '#cbf1f5', '#a6e3e9', ['Pink', 'Blue', 'Bright', 'Pastel']), - '139667': ('#070d59', '#1f3c88', '#5893d4', '#f7b633', ['Blue', 'Cold']), - '139670': ('#f857b5', '#f781bc', '#fdffdc', '#c5ecbe', ['Pink', 'Green', 'Spring']), - '139970': ('#6f0765', '#4c0045', '#bd512f', '#ffb228', ['Purple', 'Orange']), - '140057': ('#eeeeee', '#acc6aa', '#71a0a5', '#77628c', ['Grey', 'Green', 'Purple', 'Pastel', 'Vintage']), - '139633': ('#5d3a3a', '#905858', '#b5e0ba', '#f7ffbd', ['Brown']), - '139458': ('#99235c', '#df4d19', '#a43737', '#572121', ['Purple', 'Orange', 'Brown', 'Warm']), - '139521': ('#b4e9e2', '#32dbc6', '#309286', '#ebefd0', ['Turquoise']), - '139409': ('#35477d', '#6c5b7b', '#c06c84', '#f67280', ['Blue', 'Red']), - '139362': ('#a1dd70', '#fdfff0', '#e8ecd6', '#a23131', ['Green', 'Red', 'Spring']), - '139296': ('#00a8b5', '#774898', '#de4383', '#f3ae4b', ['Turquoise', 'Purple', 'Orange', 'Retro']), - '139297': ('#6d3580', '#cc4165', '#e4734f', '#ffe26f', ['Purple', 'Red', 'Orange', 'Yellow', 'Sunset', 'Warm']), - '139181': ('#010101', '#69779b', '#acdbdf', '#f0ece2', ['Black', 'Blue', 'Winter', 'Dark', 'Cold']), - '139410': ('#51eaea', '#fffde1', '#ff9d76', '#fb3569', ['Blue', 'Orange', 'Red', 'Summer', 'Bright', 'Spring']), - '139257': ('#f68787', '#f8a978', '#f1eb9a', '#a4f6a5', ['Red', 'Orange', 'Yellow', 'Green', 'Bright', 'Neon', 'Spring']), - '139088': ('#d9d9d9', '#e88a1a', '#cf3030', '#141414', ['Grey', 'Orange', 'Autumn', 'Halloween']), - '139087': ('#10316b', '#0b8457', '#eac100', '#dee1ec', ['Blue', 'Green', 'Yellow', 'Grey', 'Vintage']), - '138719': ('#5e0606', '#831212', '#970690', '#ffa400', ['Brown', 'Purple', 'Orange', 'Warm']), - '139015': ('#ffcece', '#ffc1c8', '#ffe3b0', '#8ed6ff', ['Pink', 'Yellow', 'Blue', 'Pastel', 'Bright', 'Skin']), - '138663': ('#233142', '#4f9da6', '#facf5a', '#ff5959', ['Blue', 'Yellow', 'Red']), - '138966': ('#f3f8ff', '#deecff', '#c6cfff', '#e8d3ff', ['Blue', 'Ping', 'Pastel', 'Wedding', 'Bright']), - '138572': ('#ffa900', '#9d8221', '#014441', '#01252a', ['Orange', 'Turquoise']), - '138947': ('#df0e62', '#fac70b', '#127681', '#21174a', ['Red', 'Yellow', 'Turquoise', 'Retro']), - '138573': ('#e8e2db', '#fab95b', '#f16821', '#1a3263', ['Grey', 'Orange', 'Autumn', 'Gold', 'Skin']), - '138358': ('#1c819e', '#005542', '#ffbe00', '#dfdfdf', ['Turquoise', 'Yellow']), - '138363': ('#ffd3de', '#f6b8d1', '#5dc0a6', '#3f8f8d', ['Pink', 'Turquoise', 'Spring']), - '138365': ('#6927ff', '#837dff', '#bf81ff', '#ffd581', ['Purple', 'Neon']), - '138308': ('#f77754', '#018790', '#0a516d', '#2b2726', ['Orange', 'Turquoise']), - '138147': ('#3c415e', '#738598', '#dfe2e2', '#1cb3c8', ['Grey', 'Blue', 'Winter', 'Cold']), - '138409': ('#f9989f', '#fccb8f', '#faf096', '#c5f8c8', ['Red', 'Orange', 'Yellow', 'Green', 'Bright', 'Spring', 'Summer']), - '137864': ('#113f67', '#34699a', '#408ab4', '#65c6c4', ['Blue', 'Turquoise', 'Cold']), - '138325': ('#fcf9ed', '#ffba5a', '#ff7657', '#665c84', ['Orange', 'Skin']), - '138016': ('#f5f5f5', '#30e3ca', '#2f89fc', '#40514e', ['Grey', 'Turquoise', 'Blue', 'Cold', 'Retro', 'Neon']), - '137905': ('#283148', '#913535', '#bbbbbb', '#e9eec9', ['Brown', 'Grey', 'Autumn', 'Vintage']), - '138039': ('#fff4e3', '#ffcdab', '#ffa45c', '#5d5d5a', ['Orange', 'Warm', 'Autumn', 'Skin']), - '137655': ('#074684', '#0ea5c6', '#a0edf7', '#f2efb6', ['Blue']), - '138132': ('#eef2f5', '#ea168e', '#612570', '#1eafed', ['Grey', 'Pink', 'Purple', 'Blue', 'Retro', 'Neon']), - '137927': ('#feffdb', '#ffc60b', '#ff8b00', '#444444', ['Yellow', 'Orange', 'Summer', 'Autumn', 'Warm', 'Gold']), - '137721': ('#00204a', '#005792', '#448ef6', '#fdb44b', ['Blue', 'Orange', 'Winter', 'Cold']), - '137525': ('#900c3f', '#c70039', '#ff5733', '#ffc300', ['Blue', 'Orange', 'Yellow', 'Warm']), - '137229': ('#f4f9f4', '#a7d7c5', '#74b49b', '#5c8d89', ['Green', 'White']), - '137415': ('#33313b', '#3c4f65', '#834c69', '#e6f5ff', ['Black', 'Dark']), - '137086': ('#fffafa', '#ffe0e0', '#ffc0d0', '#efdfbf', ['Pink', 'Pastel', 'Bright', 'Spring', 'White', 'Skin']), - '137660': ('#a2eae2', '#41aaa8', '#105e62', '#b5525c', ['Turquoise', 'Cold', 'Winter']), - '137720': ('#d34848', '#ff8162', '#ffcd60', '#fffa67', ['Red', 'Yellow', 'Warm']), - '137739': ('#ffcccc', '#caabd8', '#9873b9', '#714288', ['Pink', 'Purple', 'Pastel', 'Wedding']), - '137537': ('#0c005a', '#bc2525', '#ff0000', '#eaeaea', ['Blue', 'Red', 'Neon']), - '137357': ('#cdffeb', '#009f9d', '#07456f', '#0f0a3c', ['Turquoise', 'Blue', 'Cold', 'Winter']), - '137439': ('#ffefe0', '#fed9ca', '#c5c5c5', '#7d7d7d', ['Grey', 'Skin']), - '137194': ('#c82121', '#dee1ec', '#becbff', '#0d0cb5', ['Red', 'Blue', 'Retro']), - '137170': ('#ff8484', '#d84c73', '#5c3b6f', '#35234b', ['Pink', 'Purple']), - '137109': ('#f4f3f3', '#dfdfdf', '#bfd8d5', '#b1bed5', ['Grey', 'Pastel', 'Bright', 'White']), - '137195': ('#3a0088', '#930077', '#e61c5d', '#ffe98a', ['Purple', 'Red', 'Yellow', 'Sunset']), - '137244': ('#ef6c57', '#7ed3b2', '#b9e6d3', '#f2f2f2', ['Red', 'Green', 'Pastel']), - '137001': ('#4e2161', '#9bbfab', '#ebf0c2', '#774e26', ['Purple', 'Brown', 'Vintage']), - '136945': ('#cd4545', '#f16821', '#f3a333', '#fffe9a', ['Red', 'Orange', 'Yellow', 'Warm', 'Halloween', 'Summer']), - '137211': ('#eeeeee', '#cde8f6', '#d195f9', '#0033c7', ['Grey', 'Blue', 'Purple']), - '136806': ('#f59aa3', '#f5e4c3', '#34a7b2', '#5b2e35', ['Pink', 'Yellow', 'Turquoise', 'Brown']), - '136567': ('#222831', '#393e46', '#b55400', '#eeeeee', ['Black', 'Grey', 'Brown', 'Dark', 'Winter']), - '136570': ('#fafafa', '#e3e3e3', '#ee6f57', '#cb3737', ['Grey', 'Orange', 'Vintage', 'Retro', 'White', 'Skin']), - '136572': ('#d1d1d1', '#c8e8ed', '#f7fdb1', '#ded473', ['Grey', 'Blue', 'Yellow', 'Bright']), - '136769': ('#fe9191', '#e4406f', '#ca2374', '#9c297f', ['Orange', 'Red', 'Warm', 'Wedding']), - '136716': ('#6e3b3b', '#ac3f21', '#be6a15', '#f3cf7a', ['Brown', 'Warm', 'Gold', 'Skin']), - '135813': ('#6effbf', '#dcaee8', '#ffc5e6', '#fcf2db', ['Green', 'Purple', 'Pink', 'Bright', 'Neon']), - '136053': ('#d6f8b8', '#acdeaa', '#8fbbaf', '#6b7b8e', ['Green', 'Pastel', 'Cold']), - '136873': ('#e6dedd', '#8f1d14', '#1b120f', '#f89d13', ['Grey', 'Red', 'Black', 'Orange', 'Warm', 'Halloween', 'Autumn']), - '136330': ('#ebfffb', '#7efaff', '#13abc4', '#3161a3', ['Blue', 'Cold', 'Winter', 'Neon']), - '136145': ('#5c4d4d', '#915b4a', '#a96851', '#f2f1e7', ['Grey', 'Brown', 'Warm', 'Vintage', 'Skin']), - '135566': ('#fa86be', '#a275e3', '#9aebed', '#fffcab', ['Pink', 'Purple', 'Yellow', 'Bright', 'Neon']), - '135842': ('#c9f658', '#dbff3d', '#55968f', '#8acbbb', ['Green', 'Turquoise', 'Bright', 'Neon']), - '136148': ('#ffaaaa', '#e37070', '#c7004c', '#8f1537', ['Pink', 'Red', 'Warm', 'Skin']), - '135960': ('#69779b', '#9692af', '#acdbdf', '#d7eaea', ['Grey', 'Blue', 'Pastel', 'Cold', 'Winter']), - '136290': ('#ffedc6', '#cdeeaa', '#96dae4', '#6d70c6', ['Yellow', 'Green', 'Blue', 'Summer']), - '136149': ('#f185b3', '#d52484', '#90007f', '#3d0043', ['Pink', 'Purple']), - '135873': ('#ffe6eb', '#defcfc', '#cbf1f5', '#a6e3e9', ['Pink', 'Blue', 'Pastel', 'Bright']), - '135814': ('#1b335f', '#ff6bd6', '#ffb0fe', '#ffecd3', ['Pink', 'Yellow']), - '135904': ('#fbfad3', '#c6e377', '#729d39', '#36622b', ['Green']), - '135910': ('#e8e2db', '#fab95b', '#f5564e', '#1a3263', ['Grey', 'Orange', 'Warm', 'Autumn', 'Gold']), - '135151': ('#f9f8eb', '#76b39d', '#05004e', '#fd5f00', ['Green', 'Orange', 'Retro', 'Vintage']), - '135383': ('#5d50c6', '#f85e9f', '#f18fac', '#facd49', ['Purple', 'Pink', 'Yellow']), - '135565': ('#f05a28', '#f7931e', '#fff0bc', '#fefcdb', ['Orange', 'Yellow', 'Warm', 'Summer', 'Autumn', 'Gold', 'Skin']), - '134291': ('#f3f9fb', '#474f85', '#51e3d4', '#f3ecd3', ['Blue', 'Turquoise', 'Cold', 'White']), - '135431': ('#3e3838', '#ae7c7c', '#6cbbb3', '#efe784', ['Brown', 'Turquoise', 'Yellow', 'Retro']), - '134056': ('#ffb4ac', '#679186', '#264e70', '#ffebd3', ['Pink', 'Green', 'Blue', 'Vintage', 'Wedding', 'Pastel']), - '134309': ('#a8026f', '#db2d43', '#e76838', '#fbd5af', ['Purple', 'Orange', 'Sunset', 'Warm']), - '135437': ('#fcf8f3', '#aedadd', '#db996c', '#6e7da2', ['Blue', 'Brown', 'Vintage']), - '135573': ('#b5edba', '#f06f32', '#a44444', '#594129', ['Orange', 'Brown']), - '135057': ('#ffeed0', '#f79f24', '#f12d2d', '#7c064d', ['Orange', 'Red', 'Sunset', 'Warm', 'Summer']), - '134245': ('#182952', '#2b3595', '#7045af', '#e14594', ['Blue', 'Purple', 'Dark']), - '133895': ('#d7f7f5', '#75cac3', '#2a6171', '#f3d516', ['Turquoise', 'Yellow']), - '134927': ('#070d59', '#1f3c88', '#5893d4', '#ceddef', ['Blue', 'Cold', 'Winter']), - '133828': ('#fafafa', '#e0bb20', '#841818', '#000000', ['Orange', 'Red', 'Black', 'Autumn', 'Halloween', 'White']), - '133859': ('#20716a', '#23a393', '#ffc0c2', '#f7e9e3', ['Turquoise', 'Pink']), - '133655': ('#db2d43', '#87e5da', '#c7f2e3', '#f7aa00', ['Red', 'Turquoise', 'Orange', 'Retro']), - '133330': ('#587850', '#709078', '#78b0a0', '#f8d0b0', ['Green', 'Pastel']), - '133349': ('#ff8f56', '#ff5959', '#984a59', '#60424c', ['Orange', 'Warm', 'Brown']), - '133164': ('#f2f4fb', '#d22780', '#f8b500', '#5e227f', ['Grey', 'Purple', 'White']), - '133103': ('#ebebe3', '#2b2b28', '#4a4a48', '#c19898', ['Grey', 'Black', 'Skin']), - '134419': ('#feffdf', '#ffe79a', '#ffa952', '#ef5a5a', ['Yellow', 'Orange', 'Red', 'Warm', 'Bright', 'Spring']), - '134510': ('#ebf0f6', '#98ccd3', '#364e68', '#132238', ['Grey', 'Blue', 'Cold', 'Winter']), - '132460': ('#fdf1db', '#a6cb12', '#e00543', '#84253e', ['Green', 'Red', 'Summer', 'Neon']), - '133340': ('#1d5464', '#207e82', '#298f9b', '#d8d860', ['Turquoise']), - '133192': ('#c1224f', '#f16f6f', '#94d2e6', '#fff78f', ['Red', 'Blue', 'Yellow']), - '133430': ('#f3f6c8', '#ea9c1b', '#5f685a', '#362207', ['Yellow', 'Orange', 'Grey', 'Autumn']), - '133121': ('#0b032d', '#843b62', '#f67e7d', '#ffb997', ['Black', 'Purple', 'Orange', 'Halloween']), - '133026': ('#ece493', '#84a1be', '#5c7893', '#535962', ['Yellow', 'Blue']), - '132892': ('#f3f0d1', '#e29c68', '#c85108', '#a20e0e', ['Orange', 'Red', 'Autumn', 'Skin']), - '132843': ('#260c1a', '#f05d23', '#c5d86d', '#f7f7f2', ['Black', 'Orange', 'Green', 'Autumn', 'Halloween']), - '132595': ('#faf9f9', '#add2c9', '#5ea3a3', '#488b8f', ['Grey', 'Turquoise', 'White']), - '132296': ('#eaec96', '#43c0ac', '#a93199', '#fa0559', ['Yellow', 'Turquoise', 'Purple', 'Neon']), - '131930': ('#f9ecec', '#f0d9da', '#c8d9eb', '#ecf2f9', ['Pink', 'Blue', 'Pastel', 'Skin']), - '132247': ('#071e3d', '#1f4287', '#278ea5', '#21e6c1', ['Blue', 'Turquoise', 'Dark', 'Winter']), - '132003': ('#edfffa', '#8bd5cb', '#c56868', '#974949', ['Turquoise', 'Brown', 'Winter']), - '132031': ('#6b76ff', '#a5aeff', '#c8e4fe', '#feffe0', ['Blue', 'Yellow', 'Summer']), - '132222': ('#fbeed7', '#ffba5a', '#ff7657', '#665c84', ['Orange']), - '131913': ('#1d2323', '#5c848e', '#decdc3', '#e0e0ec', ['Black', 'Turquoise', 'Grey', 'Winter']), - '131456': ('#f9f8eb', '#a7d7c5', '#74b49b', '#5c8d89', ['Green', 'Pastel']), - '132032': ('#05004e', '#ff0000', '#fb7777', '#ffcccc', ['Blue', 'Red', 'Halloween']), - '131949': ('#612147', '#509aaf', '#7dd8c7', '#f5ffc3', ['Turquoise']), - '132045': ('#fcf5ee', '#fbe8e7', '#f7ddde', '#ffc4d0', ['Skin', 'Pastel', 'White', 'Skin']), - '131527': ('#45b7b8', '#706381', '#2c3848', '#f7de1c', ['Turquoise', 'Grey', 'Yellow']), - '131278': ('#ffffd2', '#e4e4e4', '#8293ff', '#503bff', ['Yellow', 'Blue', 'Summer', 'Bright']), - '131852': ('#fdf0f6', '#951555', '#771144', '#1e0411', ['Pink', 'Purple', 'Black', 'Wedding']), - '131743': ('#d1f6c1', '#45b7b7', '#8b4c8c', '#f57665', ['Green', 'Turquoise', 'Purple', 'Orange', 'Retro']), - '131504': ('#ff9234', '#ffcd3c', '#fefed5', '#35d0ba', ['Orange', 'Turquoise', 'Bright']), - '131839': ('#adccc7', '#144c52', '#053220', '#d34c26', ['Turquoise', 'Orange', 'Brown', 'Winter', 'Cold']), - '130905': ('#64638f', '#9795cf', '#aba9e9', '#cbc9ff', ['Purple', 'Cold', 'Winter']), - '131842': ('#fbf9fa', '#fd0054', '#a80038', '#2b2024', ['Grey', 'Red', 'Black', 'White']), - '131404': ('#373640', '#63686e', '#7e97a6', '#b6f7c1', ['Black', 'Grey', 'Green']), - '131306': ('#f2f4b2', '#cce490', '#0c907d', '#0d627a', ['Green']), - '131234': ('#f9f9f9', '#bcbab8', '#9d8f8f', '#625757', ['Grey']), - '131292': ('#a26ea1', '#f18a9b', '#ffb480', '#ffff9d', ['Sunset', 'Purple', 'Orange', 'Yellow']), - '131235': ('#fff0f8', '#ffc2e9', '#cca2e1', '#543e5c', ['Pink', 'Wedding']), - '131403': ('#373331', '#605a56', '#80ac7b', '#e8eaa1', ['Black', 'Grey', 'Green']), - '130857': ('#7acfdf', '#f47645', '#f9ad8d', '#fde3d9', ['Blue', 'Orange']), - '130847': ('#deecfc', '#b9ceeb', '#87a8d0', '#c3b4d2', ['Blue', 'Grey', 'Winter', 'Pastel']), - '131265': ('#f2f7ff', '#0b409c', '#10316b', '#ffe867', ['Blue', 'Yellow', 'Winter', 'Cold']), - '131233': ('#c7f2e3', '#9ed9c5', '#eeddd2', '#b73535', ['Turquoise', 'Red']), - '130541': ('#9fe8fa', '#26baee', '#73d2f3', '#fff4e0', ['Blue', 'Summer', 'Bright']), - '130807': ('#f7f7f7', '#eeeeee', '#393e46', '#929aab', ['Grey', 'White']), - '132357': ('#a8026f', '#db2d43', '#e76838', '#fbf9af', ['Purple', 'Orange', 'Yellow', 'Sunset']), - '130836': ('#b8ffd0', '#ecffc1', '#ffe6cc', '#dfbaf7', ['Green', 'Yellow', 'Purple', 'Bright', 'Spring', 'Neon']), - '130904': ('#f8b500', '#ece8d9', '#00adb5', '#393e46', ['Orange', 'Turquoise']), - '130476': ('#005792', '#53cde2', '#d1f4fa', '#edf9fc', ['Blue', 'Cold', 'Winter']), - '130941': ('#1fe5bd', '#41a7b3', '#5e227f', '#d22780', ['Turquoise', 'Purple']), - '131266': ('#f2f4fb', '#ff9280', '#ff2400', '#45315d', ['Grey', 'Orange']), - '130199': ('#033fff', '#4a9ff5', '#5ff4ee', '#c2fcf6', ['Blue', 'Cold', 'Winter']), - '130498': ('#ccf0c3', '#bca3ca', '#7c4789', '#4a0e5c', ['Green', 'Purple', 'Retro']), - '130443': ('#000000', '#3e432e', '#616f39', '#a7d129', ['Black', 'Green', 'Dark', 'Winter']), - '130852': ('#73dbc4', '#faf7e6', '#ff008b', '#fff8a1', ['Turquoise', 'Pink', 'Yellow', 'Spring', 'Neon']), - '130428': ('#2d3999', '#9a1ba0', '#f08181', '#ebbb91', ['Purple']), - '130136': ('#f5efe3', '#e6e7e5', '#f7d3ba', '#a6aa9c', ['Grey', 'Pastel', 'Skin']), - '129370': ('#dfe2fe', '#b1cbfa', '#8e98f5', '#7874f2', ['Purple', 'Cold', 'Winter']), - '130871': ('#ff1f5a', '#ffd615', '#f9ff21', '#1e2a78', ['Red', 'Yellow', 'Bright', 'Neon']), - '130221': ('#d1f4fa', '#005792', '#ffe6eb', '#ffcdcd', ['Blue', 'Pink']), - '130422': ('#ddf516', '#12e2a3', '#389168', '#0f117a', ['Yellow', 'Turquoise', 'Blue']), - '130172': ('#343434', '#e6b31e', '#fcfaf1', '#cacaca', ['Grey', 'Orange', 'Gold']), - '130345': ('#0000ff', '#6a5acd', '#add8e6', '#e6e6fa', ['Blue', 'Purple', 'Cold']), - '130295': ('#cb9b42', '#b1d1c5', '#f2f3ee', '#dbd7cb', ['Brown', 'Grey', 'Pastel']), - '130374': ('#ff8000', '#d3560e', '#851e52', '#521168', ['Orange', 'Purple', 'Warm']), - '129119': ('#dcb5ff', '#d9f2ff', '#a5bdfd', '#77529e', ['Pink', 'Blue', 'Purple']), - '129199': ('#f7f4e3', '#d2e1c8', '#fee4a6', '#f9c4aa', ['Green', 'Yellow', 'Pastel', 'Summer']), - '130118': ('#12e6c8', '#a287f4', '#414141', '#000000', ['Turquoise', 'Purple', 'Grey', 'Black']), - '129031': ('#bae5d5', '#d7acd4', '#eec2c2', '#f2f2b0', ['Turquoise', 'Purple', 'Yellow', 'Pastel', 'Retro']), - '130108': ('#573697', '#933f99', '#e88c5d', '#fadbac', ['Purple', 'Orange', 'Wedding']), - '129160': ('#f1fff1', '#c4f0c5', '#be3737', '#6a0000', ['Green', 'Red']), - '128881': ('#ffdfd3', '#fec8d8', '#d291bc', '#957dad', ['Pink', 'Purple', 'Pastel', 'Vintage', 'Warm', 'Skin']), - '129865': ('#a3f3eb', '#f1ffab', '#fbd341', '#fb9a40', ['Blue', 'Yellow', 'Orange', 'Gold', 'Summer', 'Bright']), - '130038': ('#2c2828', '#3b2c85', '#219897', '#85cfcb', ['Black', 'Purple', 'Turquoise', 'Dark', 'Winter']), - '129857': ('#faf6e9', '#ece8d9', '#fffdf6', '#494949', ['Grey', 'Pastel', 'Wedding', 'White', 'Skin']), - '129890': ('#5f1854', '#8b104e', '#1abb9c', '#f7f7f7', ['Purple', 'Turquoise']), - '129673': ('#20716a', '#23a393', '#f4a9c7', '#fff78c', ['Green', 'Pink', 'Yellow', 'Wedding']), - '129495': ('#6bd5e1', '#ffd98e', '#ffb677', '#ff8364', ['Blue', 'Yellow', 'Orange', 'Summer']), - '130290': ('#612c83', '#509aaf', '#7dd8c7', '#f5ffc3', ['Purple', 'Turquoise', 'Yellow']), - '129982': ('#c3f1ff', '#f87d42', '#db3951', '#00136c', ['Blue', 'Orange']), - '128882': ('#f0ece2', '#dfd3c3', '#c7b198', '#596e79', ['Grey', 'Brown', 'Pastel', 'Vintage', 'Skin']), - '127205': ('#fb929e', '#ffdfdf', '#fff6f6', '#aedefc', ['Pink', 'Blue']), - '129224': ('#f5e965', '#ff9668', '#db456f', '#a74faf', ['Yellow', 'Orange', 'Purple', 'Sunset', 'Neon']), - '128764': ('#dbf1f2', '#cd5555', '#882042', '#efedbb', ['Blue', 'Red', 'Yellow', 'Vintage', 'Wedding']), - '126476': ('#d3d5fd', '#929aab', '#474a56', '#0b0b0d', ['Purple', 'Grey', 'Black', 'Winter', 'Cold']), - '126653': ('#35013f', '#b643cd', '#ff5da2', '#99ddcc', ['Black', 'Purple', 'Pink', 'Turquoise', 'Wedding', 'Retro', 'Neon']), - '126189': ('#eeeeee', '#7971ea', '#393e46', '#222831', ['Grey', 'Purple', 'Black', 'Wedding']), - '128556': ('#a1c45a', '#fff9e0', '#f1c550', '#ea4c4c', ['Green', 'Yellow', 'Red', 'Summer']), - '126603': ('#481380', '#742dd2', '#efb1ff', '#ffe2ff', ['Purple', 'Pink', 'Cold']), - '126547': ('#00a8b5', '#774898', '#e62a76', '#fbb901', ['Turquoise', 'Purple', 'Pink', 'Yellow', 'Retro']), - '125778': ('#fdfdc4', '#ffe8cf', '#ffdede', '#ccffec', ['Yellow', 'Pink', 'Turquoise', 'Bright', 'Pastel', 'Summer']), - '125409': ('#ecf4f3', '#76dbd1', '#57a99a', '#555151', ['Grey', 'Turquoise']), - '125435': ('#f0f2eb', '#b5592a', '#f09027', '#8cbeaa', ['Grey', 'Brown', 'Turquoise', 'Autumn', 'Skin']), - '126369': ('#f30e5c', '#f6f3a7', '#f6c523', '#228c7b', ['Red', 'Yellow', 'Green', 'Spring']), - '125519': ('#b6e1e0', '#9cd3d3', '#e8630a', '#2b4353', ['Blue', 'Orange']), - '125408': ('#363434', '#5c5757', '#62929a', '#efecec', ['Black', 'Grey', 'Turquoise', 'Winter']), - '125661': ('#e9e2d0', '#ea9085', '#6e5773', '#4f323b', ['Orange', 'Purple', 'Vintage', 'Wedding']), - '125679': ('#a3a7e4', '#bae2be', '#f0f1b3', '#c5e5e3', ['Purple', 'Green', 'Yellow', 'Blue', 'Summer']), - '126188': ('#ff5959', '#ffad5a', '#4f9da6', '#1a0841', ['Red', 'Orange', 'Turquoise', 'Retro']), - '125424': ('#89f8ce', '#f5fac7', '#dec8ed', '#cc99f9', ['Green', 'Yellow', 'Purple', 'Bright', 'Neon']), - '125434': ('#7b3c3c', '#db5f29', '#f0f0e4', '#68bde1', ['Brown', 'Orange', 'Blue', 'Retro']), - '125272': ('#e0ffcd', '#fdffcd', '#ffebbb', '#ffcab0', ['Green', 'Yellow', 'Orange', 'Pastel', 'Bright', 'Summer']), - '125503': ('#182952', '#2b3595', '#7045af', '#e14594', ['Blue', 'Purple', 'Dark']), - '124846': ('#f7f7f7', '#393e46', '#5c636e', '#f8b500', ['Grey', 'Yellow', 'White']), - '125267': ('#ffd96a', '#f34949', '#ff9090', '#ffb6b9', ['Yellow', 'Red', 'Pink', 'Warm', 'Summer']), - '125004': ('#155e63', '#76b39d', '#f9f8eb', '#eae7e7', ['Turquoise', 'Green', 'Grey']), - '125241': ('#ff9900', '#ca431d', '#8b104e', '#520556', ['Orange', 'Purple', 'Warm', 'Sunset']), - '125016': ('#f9499e', '#fff0db', '#bbbbbb', '#5e5e5e', ['Pink', 'Yellow', 'Grey', 'Wedding']), - '125270': ('#f7aa00', '#235784', '#40a8c4', '#bcdbdf', ['Orange', 'Blue', 'Vintage']), - '124844': ('#f7f7f7', '#3b0944', '#5f1854', '#1abb9c', ['Grey', 'Purple', 'Turquoise', 'Wedding', 'Retro', 'White']), - '124795': ('#f5f4e8', '#c50d66', '#f07810', '#eec60a', ['Grey', 'Red', 'Orange', 'Yellow']), - '124945': ('#fef9d9', '#ce7d00', '#935900', '#00541a', ['Yellow', 'Brown', 'Green', 'Vintage', 'Skin']), - '125279': ('#fad3cf', '#a696c8', '#2470a0', '#060608', ['Pink', 'Purple', 'Blue', 'Black', 'Wedding']), - '124759': ('#f2f2f2', '#ebd5d5', '#ea8a8a', '#685454', ['Grey', 'Pink', 'Brown', 'Pastel', 'White', 'Skin']), - '125017': ('#ff6473', '#757882', '#5cc1b3', '#6ef7c8', ['Red', 'Grey', 'Turquoise']), - '124691': ('#fff6da', '#84f2d6', '#fc6b3f', '#262525', ['Yellow', 'Turquoise', 'Orange', 'Black', 'Retro', 'Neon']), - '124981': ('#87e5da', '#92a4c0', '#f4adad', '#e58cdb', ['Turquoise', 'Pink', 'Purple', 'Vintage']), - '124653': ('#ffffe3', '#87e0ff', '#53c7f0', '#1d97c1', ['Yellow', 'Blue', 'Summer']), - '124611': ('#13334c', '#005792', '#f6f6e9', '#fd5f00', ['Blue', 'Orange']), - '124591': ('#e01171', '#ab0e86', '#59057b', '#0f0766', ['Red', 'Purple']), - '124558': ('#d5eeff', '#f7ca44', '#a2792f', '#5c3c10', ['Blue', 'Yellow', 'Brown']), - '124494': ('#de5b7b', '#eccfd1', '#f0e3c4', '#98ded3', ['Red', 'Pink', 'Yellow', 'Turquoise']), - '124492': ('#1b3764', '#4ab8b8', '#fafccb', '#efa35c', ['Blue', 'Turquoise', 'Yellow', 'Orange']), - '124440': ('#0e0220', '#e40475', '#48e0e4', '#d7fbf6', ['Black', 'Pink', 'Blue', 'Retro', 'Wedding']), - '124219': ('#2e99b0', '#fcd77f', '#ff2e4c', '#1e1548', ['Blue', 'Yellow', 'Red']), - '124355': ('#7a4579', '#d56073', '#ec9e69', '#ffff8f', ['Purple', 'Red', 'Orange', 'Yellow', 'Sunset']), - '124155': ('#dd0a35', '#e4d1d3', '#1687a7', '#014955', ['Red', 'Blue']), - '124065': ('#d0efb5', '#eb7878', '#2f3e75', '#f3e595', ['Green', 'Red', 'Blue', 'Yellow', 'Vintage']), - '124180': ('#0e3150', '#6dc9c8', '#ffc0c2', '#f7e9e3', ['Blue', 'Turquoise', 'Pink']), - '123915': ('#fff6f6', '#ffe5ab', '#a1c45a', '#ffcdb5', ['Pink', 'Yellow', 'Green', 'White']), - '123973': ('#233142', '#455d7a', '#f95959', '#facf5a', ['Black', 'Blue', 'Red', 'Yellow', 'Halloween']), - '123883': ('#d1478c', '#ff7a5c', '#f7f9ff', '#53d397', ['Purple', 'Orange', 'Grey', 'Green']), - '123619': ('#ff9393', '#ff6767', '#ff3434', '#0c317a', ['Pink', 'Red', 'Blue']), - '123723': ('#edf0c7', '#4e9525', '#2e5a1c', '#ff5c00', ['Green', 'Orange', 'Christmas']), - '123522': ('#ffd3ad', '#ffa96a', '#005585', '#15005d', ['Orange', 'Blue']), - '123266': ('#35d0ba', '#f8c43a', '#c93d1b', '#04322e', ['Turquoise', 'Yellow', 'Orange', 'Retro']), - '123079': ('#feb062', '#575151', '#3f3b3b', '#e7b3b3', ['Orange', 'Grey', 'Pink', 'Vintage']), - '123388': ('#efff9d', '#2aa9d2', '#1874c3', '#2931b3', ['Yellow', 'Blue']), - '122811': ('#232931', '#f73859', '#f1d18a', '#ededed', ['Black', 'Red', 'Yellow', 'Grey']), - '123063': ('#005874', '#1c819e', '#e6e6d4', '#ffbe00', ['Blue', 'Yellow', 'Retro']), - '122132': ('#fbd685', '#63aebb', '#7a5d7e', '#312b30', ['Yellow', 'Turquoise', 'Purple', 'Wedding']), - '122076': ('#7c203a', '#f85959', '#ff9f68', '#feff89', ['Red', 'Orange', 'Yellow', 'Warm', 'Sunset', 'Neon']), - '122308': ('#f5f5c6', '#7da87b', '#326765', '#27253d', ['Yellow', 'Green', 'Black']), - '124272': ('#99e1e5', '#f3e8cb', '#f2c6b4', '#fbafaf', ['Blue', 'Yellow', 'Orange', 'Pink', 'Pastel', 'Summer']), - '122131': ('#f5b17b', '#4e709d', '#89a4c7', '#cdd5e0', ['Orange', 'Blue', 'Grey']), - '121992': ('#db3b61', '#ef3f61', '#3a3a59', '#555574', ['Red', 'Grey']), - '121977': ('#f5eee6', '#f3d7ca', '#e6a4b4', '#c86b85', ['Orange', 'Pink', 'Pastel', 'Skin']), - '121928': ('#2d095c', '#20366b', '#dd7777', '#eae3e3', ['Purple', 'Blue', 'Red', 'Grey']), - '121927': ('#aa530e', '#df8931', '#f5c16c', '#f3eded', ['Brown', 'Orange', 'Grey', 'Autumn', 'Gold', 'Skin']), - '121899': ('#860f44', '#bb3939', '#ea5f2d', '#eec89f', ['Red', 'Orange', 'Warm', 'Halloween']), - '121900': ('#17bebb', '#2e282a', '#cd5334', '#edb88b', ['Turquoise', 'Black', 'Orange']), - '121795': ('#ffeaa5', '#fe5f55', '#c7efcf', '#eef5db', ['Yellow', 'Red', 'Green', 'Summer', 'Spring']), - '121870': ('#35477d', '#6c5b7b', '#c06c84', '#f67280', ['Blue', 'Red']), - '123653': ('#eda1c1', '#fab2ac', '#bee4d2', '#d7f8f7', ['Pink', 'Orange', 'Green', 'Blue', 'Pastel', 'Spring']), - '122050': ('#1a2c5b', '#3e4e88', '#7971ea', '#b8dff0', ['Blue', 'Purple', 'Winter', 'Cold']), - '123528': ('#fffdb7', '#aef4a4', '#79b8d1', '#e36488', ['Yellow', 'Green', 'Blue', 'Pink']), - '121829': ('#2b007b', '#2f89fc', '#e7e6fc', '#dd7c1b', ['Blue', 'Purple', 'Orange', 'Wedding']), - '124879': ('#eaa81b', '#c95501', '#7d0000', '#012c0b', ['Orange', 'Warm', 'Autumn', 'Gold', 'Skin']), - '121517': ('#2d4059', '#ffb400', '#f6f6f6', '#ea5455', ['Orange', 'Grey', 'Red', 'Retro']), - '121859': ('#f9fa9b', '#ff7777', '#ceecf0', '#f0f3f3', ['Yellow', 'Red', 'Blue', 'Grey', 'Spring', 'Bright']), - '122310': ('#5e8b6f', '#436e4f', '#fa8f4d', '#f87829', ['Green', 'Orange']), - '121496': ('#fee9d7', '#f9bf8f', '#e2434b', '#34222e', ['Orange', 'Red', 'Warm', 'Autumn', 'Halloween', 'Skin']), - '122094': ('#535238', '#4bbb8b', '#6ddabe', '#c9ffc7', ['Brown', 'Green', 'Turquoise']), - '121460': ('#424153', '#fdadc7', '#ea4c88', '#993399', ['Pink', 'Purple']), - '121096': ('#1b3c59', '#456173', '#a6ed8e', '#f2f2f0', ['Blue', 'Green', 'Grey']), - '121558': ('#ffffc1', '#ffd2a5', '#d38cad', '#8a79af', ['Yellow', 'Orange', 'Purple', 'Pastel', 'Sunset']), - '120781': ('#0d7e83', '#13293d', '#ffaf87', '#eef0f2', ['Turquoise', 'Orange', 'Grey', 'Retro']), - '120467': ('#fd5f00', '#00204a', '#005792', '#d9faff', ['Orange', 'Blue']), - '120199': ('#f76262', '#216583', '#65c0ba', '#cffdf8', ['Red', 'Blue', 'Turquoise']), - '120122': ('#ff7517', '#3e3939', '#2c2727', '#f6f4f4', ['Orange', 'Grey', 'Black']), - '120121': ('#f9f8ed', '#c4e3cb', '#6a9c78', '#fff1bc', ['Yellow', 'Green']), - '120066': ('#480032', '#df0054', '#ff8b6a', '#ffd2bb', ['Red', 'Orange', 'Halloween']), - '120172': ('#ffa258', '#fff7c2', '#a02a63', '#4b125c', ['Orange', 'Yellow', 'Purple', 'Autumn', 'Halloween']), - '119977': ('#003545', '#00454a', '#3c6562', '#ed6363', ['Navy', 'Dark', 'Turquoise', 'Red', 'Dark']), - '119891': ('#90aeff', '#cefc86', '#60efb8', '#f9f7f7', ['Blue', 'Green', 'Grey', 'Bright']), - '119477': ('#6900ff', '#9951ff', '#ffd700', '#faf7ff', ['Purple', 'Yellow', 'Wedding', 'Bright']), - '119402': ('#203541', '#374955', '#f62a66', '#ffd933', ['Black', 'Red', 'Yellow']), - '118963': ('#f4f9f4', '#c4e3cb', '#8aae92', '#616161', ['Grey', 'Green']), - '119315': ('#333366', '#ff5f5f', '#f9e75e', '#f0f0f0', ['Red', 'Yellow', 'Grey']), - '119560': ('#fbffa8', '#74dac6', '#20c1bd', '#33354a', ['Yellow', 'Turquoise', 'Black']), - '118964': ('#092a35', '#658525', '#cfee91', '#f8eeb4', ['Black', 'Green', 'Yellow']), - '119215': ('#92e6e6', '#fff9af', '#d65d7a', '#524c84', ['Blue', 'Yellow', 'Red']), - '119059': ('#bad7df', '#ffe2e2', '#f6f6f6', '#99ddcc', ['Blue', 'Pink', 'Grey', 'Green', 'Pastel', 'Wedding', 'Spring']), - '118962': ('#283149', '#404b69', '#00818a', '#dbedf3', ['Black', 'Turquoise', 'Dark', 'Winter']), - '120110': ('#fff9e0', '#f1c550', '#ff6600', '#ce2525', ['Yellow', 'Orange', 'Red', 'Warm', 'Autumn', 'Gold']), - '118872': ('#323643', '#606470', '#93deff', '#f7f7f7', ['Black', 'Grey', 'Blue', 'Cold', 'Winter']), - '118869': ('#5ba19b', '#fceaea', '#f5d9d9', '#fbead1', ['Turquoise', 'Pink', 'Yellow', 'Wedding', 'Pastel']), - '118850': ('#404b69', '#283149', '#f73859', '#f3ecc8', ['Blue', 'Red', 'Yellow']), - '118847': ('#eeeeee', '#ff7100', '#be3030', '#222222', ['Grey', 'Orange', 'Black', 'Autumn']), - '118762': ('#eaafaf', '#a2738c', '#645c84', '#427996', ['Pink', 'Purple', 'Pastel', 'Wedding', 'Pastel']), - '118629': ('#e9fadd', '#b8e4c9', '#3f5468', '#42291c', ['Green', 'Blue', 'Black']), - '118795': ('#a8e6cf', '#fdffab', '#ffd3b6', '#ffaaa5', ['Green', 'Yellow', 'Orange', 'Red', 'Pastel', 'Spring', 'Bright']), - '118927': ('#e7759a', '#ffa35f', '#ba78cd', '#755da3', ['Pink', 'Orange', 'Purple']), - '118594': ('#062743', '#113a5d', '#c4ffdd', '#f9f9f9', ['Blue', 'Green', 'Grey', 'Cold']), - '118766': ('#ef7b7b', '#fcf3ca', '#c4eada', '#919190', ['Red', 'Yellow', 'Grey']), - '118677': ('#feffdf', '#dde0ab', '#97cba9', '#668ba4', ['Yellow', 'Green', 'Turquoise', 'Blue', 'Wedding']), - '118591': ('#062743', '#113a5d', '#ff7a8a', '#f9f9f9', ['Blue', 'Pink', 'Grey']), - '118622': ('#fce8aa', '#97de95', '#08c299', '#571179', ['Yellow', 'Green', 'Purple', 'Spring']), - '118585': ('#083358', '#0f4471', '#fc3c3c', '#f6f6f6', ['Blue', 'Red', 'Grey', 'Winter']), - '118479': ('#ffd3ad', '#ffa96a', '#005585', '#15005d', ['Orange', 'Blue']), - '118376': ('#f2f2f0', '#ff5e3a', '#2c365d', '#272e4f', ['Grey', 'Orange', 'Blue', 'Halloween', 'White']), - '118368': ('#feeb97', '#4fb783', '#409d9b', '#034561', ['Yellow', 'Green', 'Turquoise', 'Blue']), - '118331': ('#f8b195', '#f67280', '#c06c84', '#355c7d', ['Orange', 'Red', 'Blue', 'Wedding', 'Autumn', 'Warm']), - '118279': ('#090089', '#0060ca', '#91ceff', '#fcdc74', ['Blue', 'Yellow', 'Cold']), - '118126': ('#294a66', '#0b3846', '#ffbbbb', '#fcd2c2', ['Blue', 'Pink', 'Wedding']), - '118028': ('#240041', '#900048', '#ff4057', '#ff8260', ['Purple', 'Red', 'Orange', 'Halloween']), - '117924': ('#eff0f4', '#74dbef', '#0074e4', '#264e86', ['Grey', 'Blue', 'Cold']), - '117701': ('#f8d5f0', '#58d5d3', '#41a4c3', '#3f4b83', ['Pink', 'Turquoise', 'Blue']), - '117699': ('#fff1bc', '#7dc383', '#6a9c78', '#446e5c', ['Yellow', 'Green']), - '117613': ('#002bdc', '#2f4bff', '#00a6e7', '#ffe37f', ['Blue', 'Yellow']), - '117601': ('#232931', '#393e46', '#4ecca3', '#eeeeee', ['Black', 'Grey', 'Turquoise', 'Dark']), - '117579': ('#f6ec66', '#fadc6d', '#f97272', '#f65454', ['Yellow', 'Red']), - '117514': ('#702283', '#962071', '#76b39d', '#fdb44b', ['Purple', 'Green', 'Yellow', 'Retro']), - '117565': ('#faffb8', '#c5f0a4', '#35b0ab', '#226b80', ['Yellow', 'Green', 'Turquoise', 'Bright']), - '117448': ('#f8b595', '#f67280', '#c06c84', '#6c5b7c', ['Orange', 'Red', 'Purple', 'Pastel', 'Halloween', 'Skin']), - '117192': ('#448ef6', '#75c2f6', '#65daf7', '#ffe981', ['Blue', 'Yellow', 'Bright']), - '116909': ('#e4eddb', '#307672', '#144d53', '#1a3c40', ['Green', 'Turquoise', 'Winter']), - '116708': ('#ff4d4d', '#ff8364', '#fdb87d', '#ffe8d5', ['Red', 'Orange', 'Warm']), - '117534': ('#fafaf6', '#00fff0', '#00d1ff', '#3d6cb9', ['Grey', 'Turquoise', 'Blue', 'Bright', 'Cold', 'White', 'Neon']), - '116691': ('#1c1124', '#684656', '#de774e', '#b7e1b5', ['Black', 'Orange', 'Green', 'Vintage', 'Halloween', 'Autumn']), - '116690': ('#1c1124', '#693e52', '#74b49b', '#a7d7c5', ['Black', 'Green', 'Vintage', 'Wedding']), - '116678': ('#8ea6b4', '#e7eff3', '#ff8f56', '#984a59', ['Grey', 'Orange', 'Autumn', 'Winter']), - '116554': ('#45eba5', '#21aba5', '#1d566e', '#163a5f', ['Green', 'Turquoise', 'Blue']), - '116599': ('#011f3f', '#0960bd', '#429ffd', '#fef2bf', ['Blue', 'Yellow', 'Cold']), - '116542': ('#ff6107', '#e9290f', '#c40018', '#292725', ['Orange', 'Red', 'Black', 'Warm']), - '118369': ('#f7f7f7', '#ff570c', '#606470', '#323643', ['Grey', 'Orange', 'White']), - '116523': ('#84b9ef', '#fbe4c9', '#ff5d5d', '#952e4b', ['Blue', 'Red', 'Spring']), - '116408': ('#78fee0', '#4bc2c5', '#3b9a9c', '#fef4a9', ['Turquoise', 'Yellow', 'Neon']), - '116289': ('#ecf0f1', '#33cccc', '#2980b9', '#2c3e50', ['Grey', 'Turquoise', 'Blue', 'Cold']), - '114376': ('#edfead', '#d9f489', '#bdcf88', '#d95858', ['Yellow', 'Green', 'Red', 'Christmas']), - '114273': ('#ff6138', '#ffff9d', '#beeb9f', '#79bd8f', ['Red', 'Yellow', 'Green', 'Summer', 'Spring', 'Bright']), - '114244': ('#394a51', '#7fa99b', '#fbf2d5', '#fdc57b', ['Turquoise', 'Orange']), - '114174': ('#283149', '#404b69', '#f73859', '#dbedf3', ['Red', 'Blue']), - '114093': ('#fbfae1', '#cef0b9', '#64a36f', '#ffe121', ['Yellow', 'Green', 'Bright']), - '112989': ('#f56a47', '#b32c50', '#681a1e', '#0a0944', ['Orange', 'Red', 'Brown', 'Warm', 'Halloween']), - '112572': ('#f8f9fc', '#c00000', '#de3c3c', '#f7b32d', ['Grey', 'Red', 'Orange', 'Warm', 'White']), - '112238': ('#ffe6eb', '#ffcdcd', '#6a65d8', '#1d2786', ['Pink', 'Purple', 'Wedding', 'Skin']), - '112038': ('#28544b', '#acbd86', '#ffd6a0', '#ffa06f', ['Green', 'Orange', 'Autumn']), - '112036': ('#6c567b', '#c06c84', '#f67280', '#f8b195', ['Purple', 'Red', 'Warm']), - '111625': ('#fffb97', '#97ffcf', '#2fe1d6', '#38c6bd', ['Yellow', 'Turquoise', 'Summer', 'Spring', 'Bright', 'Neon']), - '111393': ('#e7f5f2', '#f9c7cf', '#12776f', '#0f4137', ['Pink', 'Turquoise', 'Wedding']), - '111218': ('#375a7f', '#4d7cae', '#6a99cb', '#fcfa70', ['Blue', 'Yellow', 'Winter', 'Cold']), - '111185': ('#360982', '#b72a67', '#ff9797', '#fde8cb', ['Blue', 'Purple', 'Pink', 'Sunset', 'Wedding']), - '111086': ('#323232', '#8559a5', '#6db193', '#f4e5c2', ['Black', 'Purple', 'Green', 'Retro']), - '111027': ('#e95280', '#23b1a5', '#ffdd7e', '#f3f3f3', ['Pink', 'Turquoise', 'Yellow', 'Grey', 'Summer']), - '110992': ('#22559c', '#f27370', '#fa9856', '#ede862', ['Blue', 'Red', 'Orange', 'Yellow', 'Sunset']), - '110977': ('#abedd8', '#46cdcf', '#0081c6', '#48466d', ['Blue', 'Turquoise']), - '110878': ('#fae3e3', '#b7b7b7', '#137083', '#3d0240', ['Pink', 'Grey', 'Turquoise', 'Purple', 'Wedding', 'Vintage', 'Skin']), - '110868': ('#11cbd7', '#c6f1e7', '#f0fff3', '#fa4659', ['Turquoise', 'Red', 'Bright', 'Cold']), - '115428': ('#fda403', '#e8751a', '#c51350', '#8a1253', ['Orange', 'Purple', 'Halloween', 'Autumn', 'Warm', 'Gold']), - '110859': ('#a7efe9', '#7fdfd4', '#fbe1b6', '#fbac91', ['Turquoise', 'Orange', 'Summer']), - '110982': ('#032a33', '#255965', '#4c6f7b', '#f1d18a', ['Black', 'Turquoise', 'Yellow']), - '110660': ('#faa9e0', '#f8b3eb', '#eaa3fc', '#fce4b0', ['Pink', 'Purple', 'Yellow', 'Pastel', 'Spring']), - '110659': ('#fbf0f0', '#dfd3d3', '#b8b0b0', '#7c7575', ['Pink', 'Grey', 'Skin']), - '110922': ('#ff6d24', '#4e413b', '#857671', '#e2ded3', ['Orange', 'Brown', 'Grey', 'Autumn', 'Skin']), - '110354': ('#f4eec0', '#aed09e', '#61b292', '#7e6752', ['Yellow', 'Green', 'Turquoise', 'Brown']), - '110223': ('#c7f3ff', '#fdc7ff', '#ffdcf5', '#f2f4c3', ['Blue', 'Pink', 'Yellow', 'Bright', 'Spring']), - '109426': ('#f6efb4', '#35c2bd', '#2796cb', '#3379e4', ['Yellow', 'Turquoise', 'Blue']), - '109414': ('#00204a', '#005792', '#00bbf0', '#fdb44b', ['Blue', 'Orange', 'Cold']), - '109517': ('#f12b6b', '#ff467e', '#fd94b4', '#f6c7c7', ['Red', 'Pink', 'Spring']), - '109389': ('#f6ffcd', '#bcffa8', '#6ba083', '#4f323b', ['Yellow', 'Green']), - '108974': ('#00204a', '#005792', '#00bbf0', '#d9faff', ['Blue', 'Winter', 'Cold']), - '108807': ('#fcfcfc', '#83ffe6', '#ff5f5f', '#2c2c2c', ['Grey', 'Turquoise', 'Red', 'Black', 'Neon']), - '108676': ('#ececeb', '#f9a828', '#07617d', '#2e383f', ['Grey', 'Orange', 'Blue']), - '108574': ('#ff6464', '#ff8264', '#ffaa64', '#fff5a5', ['Red', 'Orange', 'Yellow', 'Summer', 'Warm']), - '108559': ('#f9f8eb', '#76b39d', '#155263', '#f0b917', ['Yellow', 'Turquoise']), - '108539': ('#fffcef', '#d2ebcd', '#ff7f5b', '#393939', ['Yellow', 'Green', 'Orange', 'Vintage']), - '109078': ('#6b0848', '#a40a3c', '#ec610a', '#ffc300', ['Purple', 'Red', 'Orange', 'Yellow', 'Warm', 'Halloween']), - '108347': ('#0278ae', '#51adcf', '#a5ecd7', '#e8ffc1', ['Blue', 'Turquoise', 'Yellow', 'Winter', 'Cold']), - '108305': ('#70d4b4', '#ffebb7', '#bbbbbb', '#aaaaaa', ['Turquoise', 'Yellow', 'Grey']), - '108180': ('#ec7700', '#d65f00', '#c04d00', '#efefef', ['Orange', 'Grey', 'Gold', 'Skin']), - '108152': ('#3a0088', '#930077', '#e61c5d', '#ffbd39', ['Blue', 'Purple', 'Red', 'Yellow']), - '108141': ('#194769', '#f6f6e9', '#d7eef2', '#f2855e', ['Blue', 'Orange']), - '108068': ('#0e9577', '#04dead', '#f1efb9', '#fbfae1', ['Green', 'Yellow', 'Spring']), - '107892': ('#970747', '#fef4e8', '#1989ac', '#283e56', ['Red', 'Blue', 'Retro']), - '108560': ('#fdfdeb', '#f9ce00', '#00818a', '#09194f', ['Green', 'Blue']), - '107677': ('#0f3057', '#00587a', '#008891', '#e7e7de', ['Blue', 'Turquoise', 'Grey', 'Cold', 'Winter']), - '107673': ('#9f609c', '#ea8f79', '#e4d183', '#f8f1e5', ['Purple', 'Orange', 'Yellow', 'Pastel', 'Wedding']), - '107618': ('#283149', '#404b69', '#da0463', '#dbedf3', ['Grey', 'Red']), - '107483': ('#f4e8c1', '#a0c1b8', '#726a95', '#351f39', ['Yellow', 'Grey', 'Purple', 'Black', 'Retro']), - '107482': ('#ffb6b9', '#fae3d9', '#bbded6', '#61c0bf', ['Red', 'Turquoise', 'Pastel', 'Wedding']), - '107279': ('#ecfafb', '#81cbc8', '#4aa6b5', '#d6c481', ['Turquoise', 'Wedding']), - '107218': ('#5628b4', '#d80e70', '#e7455f', '#f7b236', ['Purple', 'Red', 'Yellow', 'Neon']), - '107208': ('#f4f4f4', '#65eeb7', '#ff5722', '#474744', ['Grey', 'Turquoise', 'Orange', 'Neon']), - '107172': ('#232855', '#215b63', '#5fcc9c', '#aaffc7', ['Blue', 'Turquoise', 'Green']), - '107141': ('#4a772f', '#ffdd00', '#fa9e05', '#a7095c', ['Green', 'Yellow', 'Orange', 'Purple']), - '107139': ('#ffa3ac', '#00043c', '#005d6c', '#00c9b1', ['Pink', 'Blue', 'Turquoise', 'Wedding']), - '107050': ('#265961', '#227066', '#76a665', '#ffdd5c', ['Green', 'Yellow']), - '106985': ('#17139c', '#dd3e3e', '#ffe5e1', '#f2f2f2', ['Blue', 'Red', 'Grey', 'Retro']), - '106972': ('#ff7777', '#fff195', '#fcffbf', '#f5e9ff', ['Red', 'Yellow', 'Pink', 'Bright', 'Summer', 'Spring']), - '106827': ('#ebebeb', '#fec100', '#528078', '#3e615b', ['Grey', 'Yellow', 'Turquoise']), - '106929': ('#333644', '#84577c', '#c65f63', '#f6e1b8', ['Black', 'Purple', 'Red', 'Yellow', 'Vintage']), - '106789': ('#fdfdfd', '#e1eb71', '#ecab69', '#e36161', ['Grey', 'Yellow', 'Orange', 'Red', 'Summer', 'White']), - '106748': ('#f2d1a8', '#ebebeb', '#669b7c', '#557669', ['Orange', 'Grey', 'Green']), - '106736': ('#8e1d41', '#dbbf0d', '#ffcd19', '#ffefb4', ['Purple', 'Yellow']), - '106735': ('#111f4d', '#f2f4f7', '#e43a19', '#020205', ['Black', 'Grey', 'Orange', 'Blue', 'Retro', 'White']), - '106734': ('#fcf9f4', '#ffc97c', '#ea7659', '#c1c1c1', ['Orange', 'Grey', 'Autumn', 'White', 'Skin']), - '106733': ('#5f4444', '#af3264', '#ff63b5', '#ffbbbb', ['Brown', 'Purple', 'Pink']), - '106719': ('#bc5148', '#fef8e6', '#7bcecc', '#3090a1', ['Red', 'Yellow', 'Blue']), - '106550': ('#e7e6e1', '#f7f6e7', '#c1c0b9', '#537791', ['Grey', 'Blue', 'Retro']), - '106475': ('#faf4d0', '#c14545', '#ea4c4c', '#703b3b', ['Yellow', 'Red', 'Brown', 'Warm']), - '106516': ('#ecfeff', '#00b7c2', '#128494', '#4ef037', ['Blue', 'Turquoise', 'Green', 'Bright', 'Neon']), - '106499': ('#d0ef84', '#f4d143', '#fda831', '#de561c', ['Green', 'Yellow', 'Orange', 'Autumn', 'Gold']), - '106460': ('#fffbcc', '#fd2e2e', '#cf1b1b', '#900d0d', ['Yellow', 'Red', 'Warm']), - '106353': ('#248888', '#e6e6e6', '#e7475e', '#f0d879', ['Turquoise', 'Grey', 'Red', 'Yellow']), - '106339': ('#e1ffcf', '#cfcbf1', '#bab5f6', '#4d3664', ['Green', 'Purple', 'Retro', 'Wedding', 'Bright']), - '106302': ('#08085e', '#a2ef44', '#fff07a', '#e8fcf6', ['Blue', 'Green', 'Yellow']), - '106083': ('#f6c667', '#b30753', '#280f34', '#bff4ed', ['Yellow', 'Purple', 'Turquoise', 'Retro']), - '105887': ('#ffdd93', '#58dada', '#1ca2bb', '#005e7c', ['Orange', 'Blue', 'Summer']), - '105848': ('#fffde1', '#fef778', '#fba746', '#7f7f7f', ['Yellow', 'Orange', 'Grey', 'Gold']), - '105677': ('#393232', '#4d4545', '#8d6262', '#ed8d8d', ['Grey', 'Pink', 'Dark', 'Skin']), - '105661': ('#a9eca2', '#f5ffcb', '#ffe3b0', '#f5c8bd', ['Green', 'Yellow', 'Orange', 'Pastel', 'Summer', 'Bright']), - '105495': ('#36626a', '#588d9c', '#73b1c1', '#f1d18a', ['Blue', 'Yellow', 'Winter', 'Wedding']), - '105407': ('#211572', '#24bddf', '#f4f4f4', '#fffdbb', ['Blue', 'Grey', 'Yellow', 'Wedding']), - '105558': ('#f7f2c1', '#f0ca6d', '#48ba95', '#403321', ['Yellow', 'Turquoise']), - '105358': ('#282d4f', '#23103a', '#a0204c', '#ff6c00', ['Blue', 'Dark', 'Purple', 'Orange', 'Halloween']), - '105443': ('#ffc7c7', '#ffe2e2', '#f6f6f6', '#8785a2', ['Pink', 'Purple', 'Retro', 'Wedding', 'Skin']), - '105240': ('#f2e8c6', '#f5841a', '#bb0029', '#03002c', ['Yellow', 'Orange', 'Red', 'Black', 'Halloween', 'Autumn']), - '105342': ('#096c47', '#0b8457', '#eac100', '#f8f1d0', ['Green', 'Yellow']), - '105206': ('#211572', '#48c0d3', '#dedede', '#ffe578', ['Blue', 'Grey', 'Yellow', 'Retro', 'Wedding']), - '105115': ('#3e333f', '#fc4442', '#f0e19e', '#f2f2f2', ['Black', 'Red', 'Yellow', 'Grey']), - '104108': ('#c6de41', '#2d6e7e', '#153b44', '#071c21', ['Green', 'Turquoise']), - '104487': ('#f6490d', '#000249', '#1dced8', '#faf9f0', ['Orange', 'Blue', 'Grey']), - '103966': ('#071a52', '#086972', '#17b978', '#a7ff83', ['Blue', 'Turquoise', 'Green', 'Neon']), - '103371': ('#363636', '#dc2f2f', '#ff894c', '#f8f8f8', ['Grey', 'Red', 'Orange']), - '103635': ('#fcf9f9', '#f1f864', '#bceb3c', '#7cbd1e', ['Grey', 'Yellow', 'Green', 'Summer', 'Bright', 'Spring', 'White', 'Neon']), - '102684': ('#000000', '#86003c', '#e41f7b', '#ff8ba0', ['Black', 'Pink', 'Dark']), - '103350': ('#e0fcff', '#bde4f4', '#404969', '#ff7f50', ['Blue', 'Orange', 'Winter']), - '102454': ('#a1d9ff', '#ca82f8', '#ed93cb', '#f2bbbb', ['Blue', 'Purple', 'Pink', 'Wedding']), - '101919': ('#734488', '#492645', '#9febeb', '#fafcdb', ['Purple', 'Blue', 'Yellow', 'Wedding', 'Retro', 'Wedding']), - '101494': ('#ff895d', '#d5eeff', '#78bbe6', '#1b435d', ['Orange', 'Blue']), - '100840': ('#302939', '#50595c', '#e99b9b', '#ffd8d8', ['Black', 'Grey', 'Pink']), - '101875': ('#1fffff', '#fffde1', '#ff9d76', '#ff4273', ['Turquoise', 'Yellow', 'Orange', 'Red', 'Summer', 'Spring', 'Bright', 'Neon']), - '101433': ('#212125', '#239d60', '#a3de83', '#f7f39a', ['Black', 'Green', 'Yellow']), - '101294': ('#fafafa', '#ffe9e3', '#c4c1e0', '#7c73e6', ['Grey', 'Pink', 'Purple', 'Vintage', 'Wedding', 'White']), - '100741': ('#624464', '#d02e77', '#fed6be', '#fffee6', ['Purple', 'Wedding']), - '101436': ('#fbfbfb', '#b9e1dc', '#f38181', '#756c83', ['Grey', 'Turquoise', 'Red', 'Vintage', 'Retro', 'White']), - '101251': ('#3f52e3', '#f6f6f6', '#efe891', '#f12d2d', ['Blue', 'Grey', 'Yellow', 'Red', 'Summer']), - '98686': ('#323232', '#295f4e', '#6db193', '#f4e5c2', ['Black', 'Green', 'Yellow']), - '101477': ('#fbfbfb', '#fff1c1', '#78b7bb', '#808b97', ['White', 'Yellow', 'Turquoise', 'Grey', 'Pastel']), - '100883': ('#dffcb5', '#b7f5de', '#add1fc', '#9870fc', ['Green', 'Turquoise', 'Purple']), - '99599': ('#161d6e', '#1160aa', '#9bb4da', '#e9d2b3', ['Blue']), - '98521': ('#33425b', '#87dfd6', '#38817a', '#f9f8eb', ['Turquoise', 'Wedding']), - '101730': ('#feff89', '#ff9f68', '#f85959', '#ac005d', ['Yellow', 'Orange', 'Red', 'Purple', 'Sunset']), - '100864': ('#0881a3', '#fffdfb', '#fde9df', '#ffd6a4', ['Blue', 'Pink', 'Yellow', 'White']), - '100885': ('#f67280', '#c06c84', '#6c5b7b', '#355c7d', ['Red', 'Purple', 'Sunset']), - '100984': ('#fff5db', '#e1addc', '#c238b5', '#810075', ['Yellow', 'Pink', 'Purple', 'Wedding']), - '98202': ('#1b3c68', '#0074e4', '#00b8c0', '#e9ffb2', ['Blue', 'Turquoise']), - '98138': ('#393e46', '#5c636e', '#f96d00', '#f2f2f2', ['Grey', 'Orange']), - '98780': ('#d1f386', '#eda045', '#df654a', '#cc376d', ['Green', 'Orange', 'Purple', 'Autumn']), - '98625': ('#34374c', '#2c2e3e', '#ee2b47', '#f6f6f6', ['Black', 'Red', 'Grey']), - '98666': ('#f5e1da', '#f1f1f1', '#40a798', '#476269', ['Grey', 'Turquoise', 'Wedding', 'Skin']), - '97923': ('#37474f', '#607d8b', '#90a4ae', '#f7b633', ['Blue', 'Grey', 'Orange']), - '100564': ('#ffbdd4', '#ffe5b9', '#ffc77f', '#ff5c5c', ['Pink', 'Orange', 'Red']), - '97912': ('#f75940', '#334252', '#364857', '#3dc7be', ['Orange', 'Turquoise', 'Retro']), - '97771': ('#dddddd', '#113c4a', '#265a5c', '#3f7b70', ['Grey', 'Turquoise', 'Green', 'Cold']), - '97718': ('#ececec', '#3e3e3e', '#ee046c', '#fcac0c', ['Grey', 'Black', 'Pink', 'Orange']), - '97657': ('#f54d42', '#ff8356', '#ffcd00', '#f5f5f5', ['Orange', 'Yellow', 'Grey']), - '97656': ('#b0dedb', '#e3f3f7', '#fc6e5e', '#583131', ['Turquoise', 'Red', 'Brown']), - '97590': ('#fbf7f7', '#f1e9e3', '#ee712b', '#dc4712', ['Pink', 'Grey', 'Orange', 'Autumn', 'Gold', 'White']), - '97426': ('#f3ecc8', '#78c2c3', '#3f6699', '#0d1b4c', ['Yellow', 'Turquoise', 'Blue', 'Winter']), - '97212': ('#cbf078', '#f8f398', '#f1b963', '#e46161', ['Green', 'Yellow', 'Orange', 'Red', 'Spring']), - '97209': ('#f9f9f9', '#ded5c4', '#ef7e56', '#305973', ['Grey', 'Orange', 'Blue', 'White']), - '97068': ('#8e3343', '#ec9454', '#f1f08a', '#c6cd78', ['Red', 'Orange', 'Yellow', 'Green', 'Autumn', 'Halloween']), - '96781': ('#fcfcfc', '#0fc9e7', '#3186b2', '#4756ca', ['Grey', 'Blue', 'White']), - '96726': ('#e9007f', '#7cdfff', '#d5fffb', '#fcffc8', ['Purple', 'Blue', 'Yellow', 'Bright', 'Neon']), - '96297': ('#fafcd6', '#259f6c', '#1e6b7f', '#140303', ['Yellow', 'Green', 'Blue', 'Black']), - '97007': ('#3e4377', '#fd367e', '#f1f2f3', '#ff9900', ['Pink', 'Grey', 'Orange', 'Wedding']), - '96253': ('#f9fbfc', '#a0dbdb', '#56a7a7', '#fcea90', ['Grey', 'Turquoise', 'Yellow', 'Spring', 'White']), - '95689': ('#003459', '#028090', '#02c39a', '#fce38a', ['Turquoise', 'Green', 'Yellow']), - '95996': ('#d5f7ff', '#494b67', '#ff006c', '#ecebff', ['Blue', 'Red', 'Grey']), - '95353': ('#00649f', '#01aac1', '#00dbe7', '#97ecc5', ['Blue', 'Turquoise', 'Cold']), - '95351': ('#453246', '#f86254', '#b04d5d', '#ffd05b', ['Red', 'Yellow']), - '95568': ('#f0f0f0', '#43dde6', '#364f6b', '#fc5185', ['Grey', 'Blue', 'Pink']), - '95181': ('#085f63', '#49beb7', '#fccf4d', '#ef255f', ['Turquoise', 'Yellow', 'Red', 'Spring']), - '95097': ('#4a2c2c', '#d3504a', '#ffdc76', '#fefea4', ['Brown', 'Red', 'Yellow']), - '94589': ('#a13939', '#e75151', '#fcc88a', '#c2c57f', ['Red', 'Orange', 'Green', 'Christmas', 'Autumn']), - '94531': ('#f1f4f6', '#5ac8d8', '#597fca', '#2552ac', ['Blue', 'Turquoise']), - '94235': ('#f5fac8', '#aee8e6', '#8bcfcc', '#539092', ['Yellow', 'Turquoise', 'Blue', 'Turquoise']), - '94200': ('#9b5d73', '#b0757c', '#c38b8b', '#fff1c5', ['Brown', 'Yellow', 'Skin']), - '94114': ('#66bfbf', '#eaf6f6', '#fcfefe', '#f76b8a', ['Turquoise', 'Grey', 'Pink', 'White']), - '93578': ('#f8eeb4', '#cfee91', '#658525', '#092a35', ['Yellow', 'Green', 'Green', 'Black']), - '93536': ('#f5f5f5', '#01ecd5', '#4586ff', '#32424a', ['Grey', 'Turquoise', 'Blue', 'Black', 'Cold']), - '93497': ('#283e56', '#1989ac', '#e8f1f5', '#ffde25', ['Blue', 'Yellow']), - '93465': ('#f7f7f8', '#4eeaf6', '#c82586', '#291f71', ['Grey', 'Blue', 'Purple', 'Neon']), - '93362': ('#155263', '#ff6f3c', '#ff9a3c', '#ffc93c', ['Turquoise', 'Orange', 'Yellow']), - '93463': ('#f5eeee', '#ea21a2', '#af05aa', '#171313', ['Grey', 'Pink', 'Purple', 'Black']), - '93272': ('#f60c86', '#f9f6d8', '#a5bfdd', '#2e89ba', ['Pink', 'Yellow', 'Blue', 'Wedding', 'Spring']), - '93126': ('#657dc4', '#838ed9', '#ece8e5', '#f59292', ['Blue', 'Blue', 'Pink']), - '92811': ('#682666', '#cf0a2c', '#e73e51', '#ffce00', ['Purple', 'Red', 'Red', 'Yellow']), - '92806': ('#393939', '#849561', '#eed690', '#ecefd8', ['Grey', 'Brown', 'Yellow', 'Grey']), - '93125': ('#d4a5a5', '#ffecda', '#f9ffea', '#a6d0e4', ['Red', 'Orange', 'Yellow', 'Blue', 'Pastel', 'Vintage', 'Summer', 'Skin']), - '92530': ('#97124b', '#dc4444', '#f5a855', '#f4e557', ['Red', 'Orange', 'Yellow', 'Halloween']), - '92752': ('#143a52', '#6e828a', '#cde3eb', '#e3eff3', ['Grey', 'Wedding', 'Winter', 'Cold']), - '92339': ('#432160', '#ff7a5a', '#50e3c2', '#fcf4d9', ['Purple', 'Orange', 'Turquoise', 'Yellow']), - '92337': ('#faf8d7', '#acc6aa', '#71a0a5', '#77628c', ['Yellow', 'Green', 'Purple']), - '92306': ('#a1eafb', '#fdfdfd', '#ffcef3', '#cabbe9', ['Blue', 'Grey', 'Pink', 'Purple', 'Bright', 'Wedding', 'Spring']), - '92208': ('#fff4c9', '#c7e78b', '#81ae64', '#709053', ['Yellow', 'Green', 'Green', 'Green']), - '91572': ('#ffe037', '#1dcd9f', '#088c6f', '#23033c', ['Yellow', 'Turquoise']), - '90182': ('#ff395e', '#8fecc8', '#6f6f6f', '#4a4a4a', ['Red', 'Turquoise', 'Grey', 'Grey']), - '89959': ('#000249', '#0f4392', '#ff5151', '#ff8b8b', ['Blue', 'Red', 'Wedding', 'Halloween']), - '89958': ('#f6f6f6', '#d6e4f0', '#1e56a0', '#163172', ['Grey', 'Blue', 'Cold', 'White']), - '91891': ('#ff007b', '#ff5757', '#ff8585', '#ffebeb', ['Pink', 'Red', 'Orange', 'Spring']), - '92753': ('#f5f5f5', '#ececec', '#facc2e', '#27b1be', ['Grey', 'Yellow', 'Turquoise']), - '89012': ('#d5def5', '#8594e4', '#6643b5', '#430f58', ['Blue', 'Purple', 'Cold', 'Winter']), - '88466': ('#bff4ed', '#280f34', '#b30753', '#f6c667', ['Blue', 'Black', 'Red', 'Yellow']), - '88465': ('#1fad9f', '#cd3131', '#ab1212', '#f6c667', ['Turquoise', 'Red', 'Orange']), - '88422': ('#fc00a3', '#b30c7b', '#780662', '#e3f6f5', ['Pink', 'Purple', 'Purple']), - '88310': ('#461b93', '#6a3cbc', '#8253d7', '#f78f1e', ['Purple', 'Orange', 'Halloween']), - '88241': ('#ff008e', '#124e96', '#0d8abc', '#daeaf6', ['Pink', 'Blue', 'Blue']), - '87834': ('#ffdaa9', '#6fa3a9', '#5f72b2', '#60366f', ['Orange', 'Blue', 'Blue', 'Purple', 'Retro']), - '87607': ('#71397c', '#91519d', '#c582d5', '#ffdf5a', ['Purple', 'Yellow']), - '89856': ('#ffffc1', '#ffd2a5', '#ffa8b8', '#d988bc', ['Yellow', 'Orange', 'Pink', 'Purple', 'Bright', 'Warm']), - '88510': ('#626eef', '#09a8fa', '#41c5d3', '#fffa9d', ['Blue', 'Turquoise', 'Yellow', 'Bright']), - '87245': ('#581845', '#900c3f', '#c70039', '#ff5733', ['Red', 'Orange', 'Warm', 'Dark', 'Halloween']), - '100322': ('#4a3333', '#98d083', '#bcfcc9', '#f2feca', ['Brown', 'Green', 'Yellow']), - '87037': ('#e3d9ca', '#95a792', '#596c68', '#403f48', ['Grey', 'Green']), - '88143': ('#c84361', '#e78775', '#abcdcb', '#ebe59b', ['Red', 'Blue', 'Yellow', 'Summer']), - '88187': ('#6a0000', '#935656', '#c4f0c5', '#f1fff1', ['Brown', 'Green', 'Skin']), - '87687': ('#7d156d', '#b94e8a', '#d87ca1', '#ffd7f1', ['Purple', 'Pink', 'Wedding']), - '87026': ('#363333', '#272121', '#e16428', '#f6e9e9', ['Black', 'Orange', 'Pink', 'Dark', 'Halloween']), - '88300': ('#feffea', '#a3de83', '#2eb872', '#ff5d6e', ['Yellow', 'Green', 'Green', 'Red', 'Spring']), - '88012': ('#f5feff', '#bde4f4', '#404969', '#dc552c', ['Blue', 'Orange', 'Winter', 'White']), - '87640': ('#f03861', '#fef2f2', '#f5d97e', '#e8b844', ['Red', 'Pink', 'Yellow', 'Spring']), - '86615': ('#39065a', '#6a0572', '#9a0f98', '#ea0599', ['Purple', 'Pink', 'Dark']), - '86614': ('#626060', '#928b8b', '#dadbc0', '#e7e9de', ['Grey']), - '87244': ('#27296d', '#5e63b6', '#a393eb', '#f5c7f7', ['Blue', 'Blue', 'Purple', 'Purple', 'Cold']), - '86611': ('#ffbc2c', '#86b86b', '#4d4d4d', '#ececec', ['Yellow', 'Green', 'Grey', 'Grey']), - '86606': ('#f7f7f7', '#f5b553', '#854836', '#000000', ['Grey', 'Orange', 'Brown', 'Black', 'Autumn', 'White', 'Skin']), - '85473': ('#dff4f3', '#dde7f2', '#b9bbdf', '#878ecd', ['Blue', 'Purple', 'Winter', 'Cold']), - '85472': ('#dce8ba', '#f3d179', '#f09872', '#f46060', ['Yellow', 'Orange', 'Red', 'Pastel', 'Autumn']), - '85014': ('#f1e290', '#f677c1', '#9b3284', '#690074', ['Yellow', 'Pink', 'Purple']), - '84735': ('#f2f9f1', '#388e3c', '#8bc34a', '#ddeedf', ['Grey', 'Green']), - '84551': ('#6c5070', '#df6a6a', '#f6f6e3', '#c2dbc1', ['Purple', 'Red', 'Green', 'Vintage', 'Pastel']), - '86342': ('#0e2431', '#fc3a52', '#f9b248', '#e8d5b7', ['Black', 'Red', 'Orange', 'Brown', 'Warm', 'Halloween']), - '84458': ('#f8ed86', '#a5e9db', '#2ca4bf', '#415b90', ['Yellow', 'Turquoise', 'Blue']), - '84126': ('#a6e4e7', '#f9f9f9', '#ebcbae', '#8f8787', ['Turquoise', 'Grey', 'Orange', 'Brown']), - '83572': ('#e9e2d0', '#ea9085', '#d45d79', '#6e5773', ['Brown', 'Pink', 'Red', 'Purple', 'Autumn', 'Skin']), - '86343': ('#ffed8f', '#a7d46f', '#359768', '#3c3352', ['Yellow', 'Green']), - '82296': ('#c4aff0', '#fffeec', '#64d7d6', '#5782bb', ['Purple', 'Yellow', 'Turquoise', 'Blue', 'Wedding']), - '81897': ('#ffe495', '#ffc97b', '#44558f', '#e6f7f7', ['Yellow', 'Orange', 'Blue', 'Gold']), - '82054': ('#dd105e', '#46466e', '#8787a3', '#bdbdd7', ['Red', 'Grey']), - '81699': ('#feff9a', '#6fe8c8', '#85fede', '#b7abfb', ['Yellow', 'Turquoise', 'Purple', 'Bright']), - '81608': ('#ca498c', '#8b2f8a', '#b08fbb', '#f6d5d5', ['Purple', 'Purple', 'Purple', 'Pink']), - '81561': ('#ffe3b7', '#840404', '#cb0101', '#ffaf00', ['Orange', 'Red', 'Yellow', 'Warm']), - '80765': ('#ffdd83', '#e3f8ff', '#28cc9e', '#a6ed8e', ['Yellow', 'Green', 'Summer', 'Spring']), - '81674': ('#fcefee', '#fccde2', '#fc5c9c', '#c5e3f6', ['Pink', 'Pink', 'Pink', 'Blue', 'Retro', 'Wedding']), - '83571': ('#588c73', '#f2e394', '#f2ae72', '#d96459', ['Green', 'Yellow', 'Orange', 'Red', 'Christmas']), - '95352': ('#3b0944', '#5f1854', '#a12559', '#f1bbd5', ['Purple', 'Pink', 'Dark']), - '80660': ('#ffed78', '#feffea', '#addce4', '#586b8f', ['Yellow', 'Blue', 'Summer']), - '80619': ('#f2fcfc', '#bdf1f6', '#8fbaf3', '#0245a3', ['Turquoise', 'Blue', 'Cold', 'Winter']), - '80367': ('#f7f09b', '#ff5200', '#971549', '#470031', ['Yellow', 'Orange', 'Purple', 'Sunset', 'Warm']), - '80280': ('#e2eff1', '#65799b', '#555273', '#e23e57', ['Blue', 'Grey', 'Red', 'Retro', 'Cold']), - '82938': ('#222831', '#393e46', '#f96d00', '#f2f2f2', ['Black', 'Grey', 'Orange', 'Grey', 'Autumn']), - '82114': ('#22eaaa', '#b31e6f', '#ee5a5a', '#ffb174', ['Green', 'Purple', 'Orange', 'Vintage', 'Spring']), - '80168': ('#f1f6f5', '#9ef4e6', '#12cc94', '#6088bb', ['Grey', 'Turquoise', 'Green', 'Blue']), - '80113': ('#c02727', '#f4806d', '#ffffd3', '#f3f2b4', ['Red', 'Orange', 'Yellow']), - '80102': ('#e9e9e5', '#d4d6c8', '#9a9b94', '#52524e', ['Grey', 'Pastel', 'Winter']), - '79894': ('#324e7b', '#86a6df', '#5068a9', '#f8f8f8', ['Blue', 'Grey', 'Cold', 'Winter']), - '79877': ('#434343', '#a64452', '#f7c873', '#f8f8f8', ['Grey', 'Red', 'Orange', 'Autumn']), - '79851': ('#ef6c35', '#161c2e', '#2bb3c0', '#faf7f2', ['Orange', 'Black', 'Turquoise', 'Grey']), - '79812': ('#9ffbfb', '#a100ff', '#db97ff', '#ffb6ff', ['Blue', 'Purple', 'Pink', 'Bright', 'Cold']), - '79725': ('#000000', '#1a8b9d', '#b2d430', '#fff5f5', ['Black', 'Turquoise', 'Green', 'Grey']), - '79143': ('#4e1e1e', '#e63870', '#fbe6a2', '#58e481', ['Brown', 'Pink', 'Yellow', 'Green']), - '79336': ('#ffeed0', '#f79f24', '#e20049', '#7c064d', ['Orange', 'Red', 'Purple']), - '79270': ('#f0bebe', '#5ea3a6', '#3a718c', '#ffffdf', ['Pink', 'Turquoise', 'Yellow']), - '78936': ('#19215e', '#f7e6b5', '#fa67ab', '#80185f', ['Blue', 'Yellow', 'Pink', 'Purple', 'Retro', 'Wedding']), - '78974': ('#303481', '#d6e6f2', '#f5f5f5', '#fff200', ['Blue', 'Blue', 'Grey', 'Yellow', 'Bright']), - '79457': ('#e5f9bd', '#a0e418', '#7fb414', '#525050', ['Green', 'Bright']), - '78984': ('#f9c4ac', '#626f92', '#474168', '#272637', ['Orange', 'Blue', 'Black']), - '78945': ('#070739', '#521477', '#c327ab', '#e1e099', ['Black', 'Purple', 'Yellow', 'Dark']), - '79451': ('#a9eee6', '#fefaec', '#f38181', '#625772', ['Blue', 'Red', 'Vintage']), - '79325': ('#e3e8f8', '#c0c5cd', '#3e588f', '#203562', ['Blue', 'Grey', 'Wedding', 'Cold']), - '78942': ('#464545', '#fb5660', '#f98e90', '#f0f3b0', ['Grey', 'Red', 'Pink', 'Yellow']), - '78705': ('#0b5269', '#03051e', '#978d58', '#eae1e1', ['Blue', 'Black', 'Brown', 'Grey', 'Dark']), - '79837': ('#8e9fe6', '#6acafc', '#6ce6dd', '#dbf094', ['Blue', 'Purple', 'Turquoise', 'Green']), - '78747': ('#2d5c7f', '#fff1a8', '#ff8f56', '#984a59', ['Blue', 'Yellow', 'Orange', 'Sunset']), - '78711': ('#feceab', '#ff847c', '#eb4a5f', '#2a363b', ['Orange', 'Red', 'Black', 'Autumn', 'Warm']), - '87062': ('#fffbe0', '#fce38a', '#2994b2', '#444f5a', ['Yellow', 'Blue']), - '78761': ('#fdfce0', '#f0eeb1', '#dad773', '#b1ad25', ['Yellow', 'Green']), - '78675': ('#3c1b1f', '#b21e4b', '#e2bf81', '#f6e1b5', ['Brown', 'Red', 'Yellow', 'Warm']), - '78631': ('#314a52', '#52686a', '#acbdc5', '#ffded5', ['Grey', 'Pink', 'Winter']), - '78674': ('#f8f8f8', '#c246c6', '#91157e', '#65195e', ['Grey', 'Purple', 'Purple', 'Purple']), - '78630': ('#062121', '#181810', '#e4dcad', '#eeeeee', ['Black', 'Black', 'Brown', 'Grey']), - '78589': ('#e1f5f2', '#6bc5d2', '#5a5d9d', '#390050', ['Turquoise', 'Blue', 'Purple', 'Blue', 'Winter', 'Cold']), - '78489': ('#18587a', '#fc624d', '#fca7a7', '#ffd6d6', ['Blue', 'Pink', 'Orange']), - '78408': ('#343434', '#8e8b82', '#e9dcbe', '#f3f3f3', ['Grey', 'Brown']), - '78378': ('#f7f39a', '#a3de83', '#38817a', '#346473', ['Yellow', 'Green', 'Turquoise']), - '77930': ('#970747', '#fef4e8', '#13445a', '#446878', ['Red', 'Grey', 'Blue', 'Wedding', 'Retro']), - '77071': ('#331621', '#cc085e', '#de7d48', '#eeca98', ['Purple', 'Pink', 'Orange', 'Halloween', 'Warm']), - '93416': ('#f8fcfb', '#c9fdd7', '#79d1c3', '#6892d5', ['Grey', 'Blue', 'Green', 'Vintage', 'Bright', 'Cold']), - '77996': ('#f2f7ff', '#0b409c', '#10316b', '#fdbe34', ['Blue', 'Blue', 'Blue', 'Yellow']), - '77134': ('#ac0c0c', '#a7d82e', '#f5f883', '#fbfadf', ['Red', 'Green', 'Yellow', 'Christmas', 'Spring']), - '77067': ('#f8f5e4', '#f97300', '#0e3047', '#10828c', ['Orange', 'Black', 'Turquoise']), - '76029': ('#dbdbeb', '#7577cd', '#080957', '#ff6d02', ['Purple', 'Blue', 'Orange', 'Cold']), - '76768': ('#1684a7', '#09a599', '#f6ec72', '#f6f6f6', ['Blue', 'Green', 'Yellow', 'Grey']), - '75979': ('#6a759b', '#21273d', '#b9d4f1', '#f1f6f8', ['Blue', 'Black', 'Grey', 'Cold', 'Winter']), - '74943': ('#2e3b3e', '#50666b', '#f9b8be', '#fd6378', ['Grey', 'Pink', 'Vintage']), - '78712': ('#dcedc2', '#ffd3b5', '#ffaaa6', '#ff8c94', ['Green', 'Orange', 'Pink', 'Vintage', 'Pastel']), - '76728': ('#f1e58a', '#4c5374', '#71647c', '#d0f0f7', ['Yellow', 'Blue', 'Grey']), - '74172': ('#222222', '#045757', '#044343', '#e4e4e4', ['Black', 'Turquoise', 'Grey', 'Dark']), - '78331': ('#3f3038', '#fdf6fa', '#fdaed8', '#f361af', ['Grey', 'Pink', 'Wedding']), - '73365': ('#466551', '#368c72', '#7ecba1', '#e7eed2', ['Green']), - '75751': ('#f1684e', '#85c8dd', '#d3e0e2', '#e9f6f5', ['Orange', 'Blue', 'Grey', 'Turquoise']), - '76698': ('#e8f79a', '#49d292', '#3b445b', '#383746', ['Yellow', 'Green', 'Black']), - '76530': ('#f9f9f9', '#efe94b', '#9f1861', '#631357', ['Grey', 'Yellow', 'Purple']), - '76335': ('#f48fb1', '#f06292', '#ad1457', '#880e4f', ['Pink', 'Pink', 'Purple', 'Red']), - '76161': ('#fcf4d9', '#8ed2c9', '#00aaa0', '#d55b3e', ['Yellow', 'Turquoise', 'Orange']), - '77723': ('#560764', '#bb8fa9', '#d8cbbb', '#eeeeee', ['Purple', 'Grey', 'Wedding']), - '75278': ('#fc345c', '#49beb7', '#afffdf', '#eafff7', ['Red', 'Turquoise', 'Green', 'Spring', 'Bright']), - '73354': ('#1b4b36', '#538f6a', '#aebd77', '#e0e7f1', ['Green', 'Grey']), - '73684': ('#2a363b', '#cf4647', '#f5d061', '#f8f6f6', ['Black', 'Red', 'Yellow', 'Grey']), - '74985': ('#33425b', '#3498db', '#fcc29a', '#ecf0f1', ['Blue', 'Orange', 'Grey']), - '73271': ('#1d3e53', '#254b62', '#476d7c', '#77abb7', ['Blue', 'Dark', 'Winter', 'Cold']), - '76308': ('#fbfbfb', '#b1d056', '#e0ff59', '#ffa33e', ['Green', 'Grey', 'Orange', 'Bright']), - '74079': ('#22213d', '#4e3188', '#24babc', '#eaef9b', ['Black', 'Purple', 'Turquoise', 'Yellow']), - '76066': ('#f4e1e1', '#f98903', '#c62727', '#4c3232', ['Pink', 'Orange', 'Red', 'Brown', 'Autumn']), - '74864': ('#1c1124', '#693e52', '#badf96', '#f7ffcd', ['Black', 'Brown', 'Green', 'Yellow']), - '74744': ('#7eb19f', '#0c8282', '#ef9037', '#edddbd', ['Turquoise', 'Turquoise', 'Orange']), - '73149': ('#303841', '#2e4750', '#f6c90e', '#f7f7f7', ['Black', 'Yellow']), - '76222': ('#fffdef', '#f1f1f1', '#e70000', '#c50000', ['Grey', 'Red']), - '73228': ('#8aacff', '#626fe6', '#6d42c7', '#e85b48', ['Blue', 'Blue', 'Purple', 'Orange']), - '73246': ('#eeeeee', '#ea9215', '#3a4750', '#303841', ['Grey', 'Orange']), - '74392': ('#45171d', '#f03861', '#ff847c', '#fecea8', ['Brown', 'Red', 'Orange', 'Yellow', 'Warm']), - '74886': ('#fffcea', '#a5f2e7', '#8983f3', '#3a0077', ['Yellow', 'Blue', 'Purple', 'Retro']), - '75752': ('#d8dfe2', '#71adb5', '#176d81', '#0d3446', ['Grey', 'Turquoise', 'Winter', 'Cold']), - '73012': ('#432c51', '#535474', '#54a4af', '#ecbc55', ['Purple', 'Turquoise', 'Orange']), - '73808': ('#f9f3e6', '#e2dcd5', '#e8aa8c', '#5e616a', ['Orange', 'Grey']), - '77461': ('#ffecba', '#ff8d68', '#a10054', '#001f52', ['Yellow', 'Orange', 'Sunset', 'Autumn']), - '72699': ('#073059', '#2866ab', '#5fbdc5', '#d8d95c', ['Blue']), - '74424': ('#ffdede', '#f7f3ce', '#c5ecbe', '#4797b1', ['Pink', 'Yellow', 'Green', 'Blue', 'Bright', 'Spring']), - '72427': ('#3e3e3e', '#405559', '#68868c', '#ededed', ['Grey', 'Turquoise', 'Winter']), - '72814': ('#fc8a15', '#f6f6f6', '#1ee494', '#009378', ['Orange', 'Grey', 'Green', 'Bright']), - '73938': ('#febfb3', '#e1396c', '#96d38c', '#d0f9b1', ['Pink', 'Red', 'Green']), - '72112': ('#d3d6db', '#3a4750', '#303841', '#be3144', ['Grey', 'Black', 'Red', 'Wedding', 'Winter']), - '72512': ('#c2faf1', '#f6f6f6', '#dfeff0', '#295e6a', ['Turquoise', 'Grey', 'Blue', 'Cold', 'Bright']), - '72277': ('#eae7ed', '#b793e6', '#646ecb', '#3532a7', ['Grey', 'Purple', 'Blue', 'Blue', 'Cold']), - '71918': ('#ff6a38', '#9ed0e0', '#5c868e', '#19483f', ['Orange', 'Blue', 'Turquoise']), - '73328': ('#fffb85', '#ffd464', '#fa5b75', '#5a3662', ['Yellow', 'Yellow', 'Pink', 'Purple']), - '72484': ('#205d67', '#639a67', '#d8ebb5', '#d9bf77', ['Blue', 'Green', 'Brown', 'Vintage']), - '73289': ('#f5f7fa', '#5be7c4', '#4fc1e9', '#7a57d1', ['Blue', 'Turquoise', 'Blue', 'Purple', 'Retro']), - '71715': ('#ff5200', '#003355', '#04536c', '#adaca7', ['Orange', 'Blue', 'Grey']), - '72652': ('#defcf9', '#cadefc', '#c3bef0', '#cca8e9', ['Blue', 'Purple', 'Pastel']), - '71572': ('#31588a', '#638ccc', '#90b2e4', '#eacf79', ['Blue', 'Yellow']), - '72200': ('#2f1b41', '#9f1e49', '#fecd51', '#f2f2f2', ['Purple', 'Red', 'Yellow', 'Grey', 'Retro']), - '72875': ('#11cbd7', '#9feed1', '#fff6a2', '#f60c86', ['Blue', 'Turquoise', 'Yellow', 'Pink', 'Spring', 'Bright']), - '75964': ('#99f0ca', '#c9fdd7', '#fdffe7', '#8c7676', ['Green', 'Green', 'Yellow', 'Brown']), - '71827': ('#151680', '#1c44ac', '#375fc0', '#f1fea4', ['Blue', 'Yellow', 'Cold']), - '71453': ('#d2d4d6', '#7d8df6', '#5a4db2', '#ff771b', ['Grey', 'Blue', 'Orange']), - '71826': ('#b9f9ff', '#dafdff', '#f7e590', '#f5cd6d', ['Blue', 'Yellow', 'Summer', 'Bright']), - '71378': ('#222831', '#393e46', '#0092ca', '#eeeeee', ['Black', 'Grey', 'Blue', 'Winter']), - '73138': ('#f6fea1', '#ffb270', '#f08e6b', '#ff7575', ['Yellow', 'Orange', 'Red', 'Gold']), - '71387': ('#dafaf8', '#d6e1a5', '#027b7e', '#2a014b', ['Turquoise']), - '71609': ('#f49393', '#f21368', '#aa236d', '#261d1d', ['Pink', 'Red', 'Purple', 'Black']), - '72664': ('#22c7a9', '#2db6a3', '#fccf4d', '#fef3cc', ['Turquoise', 'Turquoise', 'Yellow', 'Yellow']), - '71318': ('#691a40', '#9e3668', '#f6a9ce', '#fde3f0', ['Purple', 'Pink', 'Pink']), - '71250': ('#4b4a5a', '#a55540', '#e79a58', '#e1d5d2', ['Grey', 'Brown', 'Orange', 'Autumn']), - '69667': ('#fafafa', '#e8f1f5', '#005691', '#004a7c', ['Grey', 'Blue', 'Cold', 'Winter']), - '70782': ('#f4f4ec', '#76e2f4', '#615dec', '#301781', ['Grey', 'Turquoise', 'Blue', 'Cold']), - '71302': ('#a8e6cf', '#dcedc1', '#ffd3b6', '#ffaaa5', ['Turquoise', 'Green', 'Orange', 'Pink', 'Pastel']), - '71050': ('#f3f6f6', '#30e3ca', '#11999e', '#40514e', ['Grey', 'Turquoise']), - '71246': ('#3d262a', '#127c56', '#eab64d', '#ecf3f6', ['Brown', 'Green', 'Orange', 'Grey']), - '70717': ('#2a2b5f', '#393c83', '#3dc4d0', '#44d9e6', ['Blue', 'Cold']), - '71366': ('#ff4545', '#ff9867', '#ffbf87', '#ffedb2', ['Red', 'Orange', 'Yellow', 'Warm']), - '70596': ('#e7f0d2', '#d2ea9b', '#abcb89', '#83b271', ['Green']), - '70716': ('#921224', '#bce0da', '#ebf5ee', '#bdc6b8', ['Red', 'Blue', 'Grey', 'Vintage', 'Wedding']), - '70746': ('#f8fdc3', '#facbf8', '#efa7f3', '#f677f7', ['Yellow', 'Pink', 'Bright']), - '68865': ('#ddf5f7', '#c0d9e5', '#44679f', '#3b577d', ['Blue', 'Cold']), - '69534': ('#eceff4', '#00ad7c', '#fbd490', '#475762', ['Grey', 'Green', 'Orange']), - '70050': ('#141829', '#21294c', '#f2dea8', '#f9f2d7', ['Black', 'Blue', 'Yellow']), - '71012': ('#fff6fb', '#ffbee3', '#fc5bb6', '#ff0592', ['Pink', 'Bright', 'Wedding']), - '69740': ('#f2eee3', '#baaf92', '#785e4d', '#ff8426', ['Grey', 'Brown', 'Orange', 'Autumn']), - '69056': ('#428b46', '#b7b56e', '#d6d88b', '#e9eab4', ['Green', 'Brown', 'Yellow']), - '70734': ('#7386d5', '#a0b6f5', '#ffefef', '#ff2c2c', ['Blue', 'Blue', 'Grey', 'Red']), - '70588': ('#0962ea', '#0e7cf4', '#0aa0f6', '#faf15d', ['Blue', 'Yellow']), - '68768': ('#f9f8eb', '#ffe1b6', '#7a9eb1', '#415865', ['Yellow', 'Blue']), - '70274': ('#f70776', '#c3195d', '#680747', '#141010', ['Red', 'Pink', 'Purple', 'Black']), - '69955': ('#2e2b2b', '#388186', '#a5e9e1', '#fdf6f6', ['Black', 'Turquoise', 'Grey']), - '68755': ('#fffe9f', '#ffd480', '#fca180', '#f56262', ['Yellow', 'Yellow', 'Orange', 'Red']), - '68238': ('#f2f9f1', '#ddeedf', '#b6cdbd', '#5c715e', ['Grey', 'Green', 'Vintage']), - '68089': ('#c7f5fe', '#fcc8f8', '#eab4f8', '#f3f798', ['Blue', 'Pink', 'Purple', 'Yellow', 'Bright']), - '69360': ('#525252', '#414141', '#313131', '#ec625f', ['Grey', 'Black', 'Red', 'Dark']), - '67181': ('#f0eec9', '#9ee6cf', '#50c9ba', '#4ba2ac', ['Yellow', 'Turquoise']), - '70476': ('#fafafa', '#ff6699', '#c54c82', '#512e67', ['Grey', 'Pink', 'Purple']), - '67166': ('#7effdb', '#b693fe', '#8c82fc', '#ff9de2', ['Turquoise', 'Purple', 'Pink']), - '68212': ('#1d7d81', '#213458', '#887575', '#f6e8e8', ['Turquoise', 'Blue', 'Brown', 'Pink']), - '68660': ('#57d1c9', '#ed5485', '#fffbcb', '#ffe869', ['Turquoise', 'Pink', 'Yellow', 'Yellow']), - '66766': ('#dff5f2', '#87dfd6', '#46b7b9', '#2f9296', ['Turquoise']), - '67816': ('#f3f3f3', '#ffdd67', '#ffcd38', '#4a4a4a', ['Grey', 'Yellow', 'Gold']), - '68797': ('#280b45', '#61105e', '#c84771', '#ffe98a', ['Purple', 'Yellow']), - '67815': ('#8ef6e4', '#9896f1', '#d59bf6', '#edb1f1', ['Turquoise', 'Purple', 'Pink']), - '68019': ('#a44a4a', '#dd8968', '#e4c478', '#e8e46d', ['Red', 'Orange', 'Yellow', 'Warm', 'Gold']), - '67703': ('#eeeeee', '#59569d', '#f25292', '#fea096', ['Grey', 'Purple', 'Pink', 'Pink']), - '67082': ('#d3f6d1', '#a7d7c5', '#74b49b', '#5c8d89', ['Green', 'Turquoise']), - '67020': ('#ff6f6f', '#fff46e', '#f6f6f6', '#a58bff', ['Red', 'Yellow', 'Grey', 'Purple', 'Bright']), - '68678': ('#2f1b41', '#872341', '#be3144', '#f05941', ['Red', 'Orange']), - '68013': ('#dddddd', '#574e6d', '#43405d', '#4b586e', ['Grey', 'Winter', 'Cold']), - '67450': ('#1fad9f', '#cd3131', '#ab1212', '#f6e4b5', ['Turquoise', 'Red', 'Yellow']), - '67080': ('#fc993c', '#ffe775', '#bd4682', '#8c2057', ['Orange', 'Yellow', 'Purple', 'Purple']), - '67593': ('#fafbd4', '#b2ebf9', '#aea1ea', '#8c54a1', ['Yellow', 'Blue', 'Purple', 'Wedding', 'Retro']), - '66373': ('#dde8b9', '#e8d2ae', '#cb8589', '#796465', ['Brown', 'Pastel', 'Vintage']), - '66528': ('#070f4e', '#2772db', '#3ab1c8', '#f5ebeb', ['Blue', 'Grey', 'Cold']), - '66334': ('#c8f4de', '#a4e5d9', '#66c6ba', '#649dad', ['Turquoise']), - '67660': ('#bc4f4f', '#e98b50', '#f3cd97', '#fef2a0', ['Orange', 'Yellow', 'Gold']), - '66246': ('#f9f8ed', '#f4e7d3', '#0881a3', '#1f4e5f', ['Blue', 'Wedding']), - '65976': ('#d7aef3', '#94f6f2', '#f7f680', '#fbd0f5', ['Purple', 'Turquoise', 'Yellow', 'Pink', 'Spring', 'Bright']), - '66663': ('#ebe9f6', '#453c38', '#6a5c55', '#f66e00', ['Brown', 'Grey', 'Orange']), - '65978': ('#ddfee4', '#28cc9e', '#196b69', '#132f2b', ['Green', 'Turquoise']), - '66989': ('#ca3e6b', '#fa8383', '#9dd3cc', '#ffe4b3', ['Red', 'Pink', 'Turquoise', 'Yellow']), - '65929': ('#f6f5f5', '#e3e3e3', '#3bb4c1', '#048998', ['Grey', 'Turquoise', 'Cold']), - '67169': ('#ff006c', '#d62b70', '#973961', '#623448', ['Red', 'Purple', 'Purple', 'Brown']), - '66816': ('#233142', '#455d7a', '#f95959', '#e3e3e3', ['Black', 'Blue', 'Red', 'Grey']), - '66979': ('#f5fac8', '#a5f0e4', '#82c7eb', '#8ea1f0', ['Yellow', 'Blue']), - '66822': ('#4b2c34', '#447878', '#779977', '#ddddbb', ['Brown', 'Turquoise', 'Green']), - '66724': ('#f7f09b', '#ff5200', '#c31207', '#77024d', ['Yellow', 'Orange', 'Red', 'Purple']), - '66380': ('#146c78', '#0e91a1', '#7dce94', '#efede7', ['Blue', 'Green', 'Grey']), - '66554': ('#faee1c', '#f3558e', '#9c1de7', '#581b98', ['Yellow', 'Pink', 'Purple', 'Purple']), - '66116': ('#a9eee6', '#fefaec', '#f9a1bc', '#625772', ['Turquoise', 'Yellow', 'Pink', 'Purple']), - '65520': ('#1b8057', '#55a44e', '#d7c37a', '#ede9a3', ['Green', 'Yellow', 'Brown']), - '67108': ('#3d1860', '#643579', '#bb99cd', '#f5edf7', ['Purple', 'Cold']), - '65211': ('#e67676', '#f2f062', '#a9e6e6', '#7692e4', ['Red', 'Yellow', 'Blue']), - '66214': ('#1b3c59', '#456173', '#11bfae', '#f2f2f0', ['Blue', 'Turquoise', 'Grey', 'Cold']), - '66130': ('#bff4ed', '#280f34', '#e41655', '#b30753', ['Blue', 'Black', 'Red']), - '65423': ('#f3f169', '#46c3db', '#2d6cdf', '#482ff7', ['Yellow', 'Blue']), - '65168': ('#f5e1da', '#f1f1f1', '#40a798', '#476268', ['Grey', 'Turquoise', 'Vintage']), - '65474': ('#511e78', '#8b2f97', '#cf56a1', '#fcb2bf', ['Purple', 'Pink']), - '65846': ('#90f6d7', '#35bcbf', '#41506b', '#263849', ['Turquoise', 'Turquoise', 'Black']), - '63974': ('#ecfffb', '#b4f1f1', '#2d767f', '#1e6262', ['Blue', 'Turquoise', 'Cold']), - '76788': ('#eeeeee', '#fcc314', '#94ac3c', '#295ba7', ['Grey', 'Yellow', 'Green', 'Blue', 'Spring']), - '65180': ('#f2e9d0', '#eaceb4', '#e79e85', '#bb5a5a', ['Brown', 'Orange', 'Red', 'Pastel', 'Vintage', 'Warm']), - '65473': ('#402785', '#5f4e9e', '#fafb97', '#fcc97b', ['Purple', 'Yellow']), - '64711': ('#ebfffa', '#c6fce5', '#6ef3d6', '#0dceda', ['Blue', 'Green', 'Turquoise', 'Bright', 'Cold']), - '64753': ('#f4f4f4', '#fb9935', '#b90b0b', '#8c0909', ['Grey', 'Orange', 'Red', 'Autumn']), - '63788': ('#ffabe5', '#c7f5ff', '#d89fff', '#f6fcae', ['Pink', 'Blue', 'Purple', 'Yellow', 'Spring', 'Bright']), - '63283': ('#1c226b', '#3e31ae', '#4aa9af', '#d1fffa', ['Purple', 'Turquoise', 'Blue', 'Cold']), - '63326': ('#dc3737', '#f7af1d', '#f5e180', '#aeaf7a', ['Red', 'Orange', 'Yellow', 'Autumn']), - '65068': ('#36d1c4', '#a0eecc', '#fff2be', '#f6318c', ['Turquoise', 'Green', 'Yellow', 'Pink', 'Spring', 'Bright']), - '65119': ('#4c6983', '#38556a', '#273952', '#b6fff9', ['Black', 'Winter', 'Cold']), - '65360': ('#be0eaa', '#ea2ba2', '#fb9696', '#f6ca97', ['Purple', 'Pink', 'Yellow', 'Spring']), - '62610': ('#e0fcff', '#90f2ff', '#6eb6ff', '#7098da', ['Blue', 'Bright', 'Cold']), - '65139': ('#fbf7f7', '#f9d00f', '#f0ae2c', '#f92727', ['Grey', 'Yellow', 'Red', 'Bright', 'Gold']), - '64640': ('#1b5a7a', '#1aa59a', '#a6ed8e', '#f3ffb9', ['Blue', 'Turquoise', 'Green', 'Yellow']), - '64641': ('#ff9898', '#cf455c', '#971549', '#470031', ['Pink', 'Red', 'Red', 'Purple', 'Warm']), - '63093': ('#586e72', '#fbf27c', '#5c835a', '#305c5c', ['Grey', 'Yellow', 'Green']), - '64291': ('#eb89b5', '#ffd7e9', '#fffbf3', '#fff8d2', ['Pink', 'Yellow', 'Bright']), - '63246': ('#f4f7f7', '#aacfd0', '#5da0a2', '#34495e', ['Grey', 'Turquoise', 'Cold']), - '62822': ('#7b77ff', '#92cce1', '#f68686', '#ffe3b9', ['Purple', 'Orange', 'Red', 'Yellow']), - '64412': ('#fff6f6', '#eea1eb', '#cb22d7', '#891180', ['Pink', 'Purple']), - '65088': ('#f6eb9a', '#5853bc', '#362391', '#1c0c59', ['Yellow', 'Blue']), - '63973': ('#f03861', '#fef2f2', '#f5d97e', '#7d5e3f', ['Red', 'Yellow', 'Brown']), - '62766': ('#d9f9f4', '#9cd9de', '#86c1d4', '#5a92af', ['Turquoise', 'Blue', 'Cold']), - '63915': ('#2aaf74', '#4ed99c', '#d1ebfe', '#f7be7f', ['Green', 'Blue', 'Orange']), - '62940': ('#f69d9d', '#ffeab6', '#fdffba', '#c0ffc2', ['Pink', 'Orange', 'Yellow', 'Green', 'Bright']), - '62803': ('#253b6e', '#1f5f8b', '#1891ac', '#d2ecf9', ['Blue', 'Cold']), - '63955': ('#f6faf7', '#e7eaa8', '#b4bb72', '#303e27', ['Grey', 'Green', 'Yellow']), - '63931': ('#b80257', '#dd356e', '#fc7fb6', '#ffbbe1', ['Red', 'Red', 'Pink', 'Pink']), - '62923': ('#76d3ff', '#d78bff', '#fffa9d', '#ffbd74', ['Blue', 'Purple', 'Yellow', 'Orange']), - '64857': ('#f2f7ff', '#0b409c', '#10316b', '#ffce63', ['Blue', 'Orange', 'Cold']), - '66129': ('#1fab89', '#62d2a2', '#9df3c4', '#d7fbe8', ['Green']), - '65249': ('#fee856', '#ffce3e', '#e65c7b', '#834496', ['Yellow', 'Yellow', 'Purple']), - '66990': ('#07689f', '#a2d5f2', '#fafafa', '#ff7e67', ['Blue', 'Orange']), - '63366': ('#560764', '#913175', '#dd5b82', '#fe9797', ['Purple', 'Pink']), - '62678': ('#266f89', '#3d93a3', '#3ec483', '#d2e48e', ['Blue', 'Green']), - '64671': ('#29c6cd', '#f6e4c4', '#fea386', '#f19584', ['Blue', 'Orange']), - '62767': ('#ffd9e8', '#de95ba', '#7f4a88', '#4a266a', ['Pink', 'Purple']), - '62193': ('#212121', '#323232', '#0d7377', '#14ffec', ['Black', 'Turquoise', 'Cold', 'Dark']), - '62655': ('#fd9191', '#fddd8a', '#f5fc9e', '#9efcb4', ['Pink', 'Orange', 'Yellow', 'Green']), - '62928': ('#eff7d3', '#cedcc3', '#a7b99e', '#535a3b', ['Yellow', 'Brown', 'Grey', 'Green']), - '62935': ('#3c3b5c', '#d53939', '#ffb563', '#7b3c59', ['Blue', 'Red', 'Orange', 'Purple', 'Halloween']), - '62535': ('#616eef', '#09a8fa', '#41c5d3', '#d0f1cf', ['Blue', 'Turquoise', 'Cold']), - '63012': ('#658361', '#d0dd97', '#f8fae4', '#f9de79', ['Green', 'Green', 'Grey', 'Yellow']), - '62386': ('#2c3e50', '#34495e', '#ecf0f1', '#bdc3c7', ['Grey']), - '62180': ('#f3f6f6', '#90eee1', '#55b3f3', '#6356e5', ['Grey', 'Turquoise', 'Blue']), - '62955': ('#f6378f', '#ffdd00', '#f5efe8', '#8ea5eb', ['Pink', 'Yellow', 'Grey', 'Blue', 'Spring']), - '62456': ('#388e3c', '#8bc34a', '#dce775', '#fff59d', ['Green', 'Green', 'Yellow', 'Yellow']), - '62241': ('#eff0f4', '#d3d6db', '#415f9d', '#233b6e', ['Grey', 'Blue', 'Winter', 'Cold']), - '45072': ('#f4f56e', '#72e8e1', '#58b3d3', '#418c9f', ['Yellow', 'Turquoise', 'Blue', 'Turquoise']), - '70512': ('#14103b', '#f02a71', '#7ec0e4', '#6789ba', ['Black', 'Pink', 'Blue', 'Blue']), - '45047': ('#eeeeee', '#234c63', '#379956', '#ffc85b', ['Grey', 'Blue', 'Green', 'Orange', 'Retro']), - '62199': ('#e38ed2', '#c75696', '#9d3978', '#512e67', ['Pink', 'Purple', 'Purple', 'Purple']), - '44798': ('#006c9a', '#00bebe', '#00f3e4', '#9ff9c1', ['Blue', 'Turquoise']), - '44662': ('#333c4a', '#495664', '#f6f7d3', '#f8fceb', ['Black', 'Yellow']), - '62624': ('#ff8fe5', '#fbff64', '#76e3ff', '#7bc7fa', ['Pink', 'Yellow', 'Blue', 'Bright']), - '45023': ('#2a528a', '#5d6ec7', '#9f71db', '#e9d498', ['Blue', 'Purple', 'Yellow']), - '44995': ('#ffdd83', '#e3f8ff', '#31bccc', '#405983', ['Yellow', 'Blue', 'Turquoise', 'Blue', 'Summer']), - '44992': ('#3a3a62', '#604fdd', '#26c6d0', '#e6e993', ['Purple', 'Turquoise', 'Yellow']), - '44707': ('#499491', '#a3dec9', '#f7fed8', '#fbd400', ['Turquoise', 'Yellow']), - '44958': ('#f70c9b', '#cb007b', '#d6e3ed', '#99b0c2', ['Pink', 'Purple', 'Grey']), - '44675': ('#f0fff3', '#c6f1e7', '#70acb1', '#59606d', ['Turquoise', 'Grey']), - '44906': ('#b31313', '#ff9000', '#fdda16', '#ffee82', ['Red', 'Orange', 'Yellow', 'Warm', 'Gold']), - '44586': ('#4d12ee', '#2f24c1', '#3fd1cb', '#f8f6f6', ['Blue', 'Turquoise', 'Grey']), - '44559': ('#34495d', '#2c3d4f', '#ee7738', '#f59d2a', ['Black', 'Orange']), - '44658': ('#8c7676', '#99f0ca', '#c9fdd7', '#fdffe7', ['Brown', 'Green', 'Yellow', 'Bright']), - '44430': ('#f9f5f0', '#f2ead3', '#f4991a', '#321313', ['Grey', 'Orange', 'Brown', 'Retro', 'Warm', 'Wedding']), - '44400': ('#4e4e6a', '#1f6cb0', '#70a3c4', '#e7e8f5', ['Grey', 'Blue', 'Cold']), - '62847': ('#f73f52', '#ffea85', '#f6f6f6', '#7986c7', ['Red', 'Yellow', 'Grey', 'Blue']), - '44259': ('#defbc2', '#90d26d', '#459d72', '#342b2b', ['Green']), - '44258': ('#f4f4f4', '#6decb9', '#11999e', '#3c3c3c', ['Grey', 'Green', 'Turquoise', 'Black']), - '43937': ('#282f44', '#e6af2e', '#f5d061', '#ececec', ['Black', 'Yellow', 'Grey', 'Gold']), - '44626': ('#104455', '#0a3442', '#3ad3cd', '#7fffd6', ['Turquoise', 'Cold']), - '44243': ('#d2f6fc', '#a9d2ff', '#7984ee', '#6730ec', ['Blue', 'Purple', 'Cold']), - '43846': ('#f1ed63', '#d97d97', '#9862ae', '#815a8f', ['Yellow', 'Pink', 'Purple']), - '43879': ('#ffd6b6', '#ea7362', '#b74242', '#5c2626', ['Orange', 'Brown', 'Warm']), - '43813': ('#364f6b', '#3fc1c9', '#fce38a', '#fc5185', ['Blue', 'Yellow', 'Pink']), - '43750': ('#1b435d', '#78bbe6', '#d5eeff', '#ff895d', ['Blue', 'Orange', 'Cold']), - '43765': ('#ffa0c2', '#f9f5ce', '#e3ce8b', '#9e7e44', ['Pink', 'Yellow', 'Brown']), - '44109': ('#fff2b2', '#9ed763', '#2c9e4b', '#0a4650', ['Yellow', 'Green']), - '44226': ('#f54ea2', '#a94caf', '#7b3b8c', '#41228e', ['Pink', 'Purple']), - '43974': ('#20decb', '#41eecb', '#f9f296', '#fcd78e', ['Turquoise', 'Yellow', 'Spring']), - '44449': ('#2e94b9', '#fffdc1', '#f0b775', '#fd5959', ['Blue', 'Yellow', 'Orange', 'Red']), - '43379': ('#e1eacd', '#bad8b6', '#61b390', '#01352c', ['Green', 'Black']), - '43753': ('#005689', '#007cb9', '#d5eeff', '#ff895d', ['Blue', 'Orange']), - '43636': ('#1b1f3a', '#53354a', '#a64942', '#ff7844', ['Black', 'Brown', 'Orange', 'Dark', 'Warm']), - '43601': ('#113f67', '#34699a', '#408ab4', '#65c6c4', ['Blue', 'Turquoise', 'Cold']), - '44038': ('#f2ffdf', '#b1f1b2', '#1e757b', '#424d69', ['Green', 'Turquoise']), - '43120': ('#ffbc65', '#ac4c5e', '#5c476f', '#eeeeee', ['Orange', 'Red', 'Purple', 'Grey']), - '43560': ('#272932', '#1c7293', '#b9e3c6', '#f1f2eb', ['Black', 'Blue', 'Green', 'Grey', 'Cold']), - '43744': ('#c54c82', '#ec729c', '#f4aeba', '#fdfdcb', ['Purple', 'Pink', 'Yellow', 'Warm']), - '43327': ('#ff5656', '#edf2f6', '#6a7efc', '#494953', ['Red', 'Blue', 'Blue', 'Grey']), - '42678': ('#f7f0e9', '#ffaf9b', '#df5333', '#424242', ['Grey', 'Orange', 'Black']), - '43162': ('#58828b', '#5e9387', '#c8e29d', '#f2f299', ['Turquoise', 'Green', 'Yellow']), - '42664': ('#233142', '#36506c', '#a5def1', '#ebf7fd', ['Black', 'Blue', 'Winter']), - '65175': ('#f23557', '#f0d43a', '#22b2da', '#3b4a6b', ['Red', 'Yellow', 'Blue', 'Blue']), - '43278': ('#f7f7f7', '#fcd59b', '#1fa8cf', '#2657c1', ['Grey', 'Yellow', 'Blue']), - '42568': ('#354649', '#6c7a89', '#a3c6c4', '#e0e7e9', ['Black', 'Grey', 'Winter', 'Cold']), - '42970': ('#faf4e1', '#fabc41', '#ec9454', '#c72767', ['Yellow', 'Orange', 'Purple', 'Warm', 'Vintage', 'Gold']), - '42656': ('#f2f2f2', '#cdcdcd', '#005691', '#004a7c', ['Grey', 'Blue', 'Cold']), - '42755': ('#fdf196', '#f08edb', '#bb47be', '#a31c88', ['Yellow', 'Pink', 'Purple', 'Spring']), - '42452': ('#303841', '#3a4750', '#ea9215', '#eeeeee', ['Black', 'Grey', 'Orange']), - '42726': ('#cbf9da', '#3dd2cc', '#3e6b89', '#122d42', ['Turquoise', 'Blue', 'Cold']), - '42617': ('#f47c7c', '#f7f48b', '#a1de93', '#70a1d7', ['Red', 'Yellow', 'Green', 'Blue']), - '42214': ('#283739', '#2c5d63', '#a9c52f', '#f5f5f5', ['Black', 'Turquoise', 'Green', 'Grey']), - '42563': ('#ed9153', '#fbd157', '#fbede1', '#53435b', ['Orange', 'Yellow', 'Autumn', 'Gold']), - '42191': ('#e3fdfd', '#cbf1f5', '#a6e3e9', '#71c9ce', ['Turquoise', 'Cold']), - '42676': ('#303a52', '#574b90', '#9e579d', '#fc85ae', ['Purple', 'Pink']), - '42560': ('#798a65', '#faf3df', '#d15385', '#8e415b', ['Green', 'Yellow', 'Purple', 'Purple']), - '42254': ('#f4f7ed', '#86ee60', '#2e6e65', '#2b3752', ['Grey', 'Green', 'Turquoise', 'Blue']), - '42012': ('#2e94b9', '#475053', '#acdcee', '#f0fbff', ['Blue', 'Grey', 'Cold']), - '42272': ('#f38181', '#fce38a', '#d6f7ad', '#95e1d3', ['Red', 'Yellow', 'Green', 'Blue']), - '62260': ('#2a363b', '#e84a5f', '#ff847b', '#fecea8', ['Black', 'Red', 'Orange', 'Warm']), - '41858': ('#1333a6', '#317ae1', '#1fdedb', '#fffcbf', ['Blue', 'Turquoise', 'Yellow']), - '41890': ('#ffca61', '#ffec85', '#f2ffdf', '#c9f0d6', ['Orange', 'Yellow', 'Turquoise', 'Spring', 'Summer', 'Gold']), - '42237': ('#283739', '#228896', '#a9c52f', '#f5f5f5', ['Turquoise', 'Blue', 'Green', 'Grey']), - '42657': ('#7a08fa', '#a82ffc', '#c264fe', '#f8ecfd', ['Purple', 'Cold']), - '41810': ('#adf7d1', '#95e8d7', '#7dace4', '#8971d0', ['Turquoise', 'Turquoise', 'Blue', 'Purple']), - '42533': ('#384259', '#f73859', '#7ac7c4', '#c4edde', ['Red', 'Turquoise']), - '41825': ('#f9a828', '#ececeb', '#07617d', '#2e383f', ['Orange', 'Grey', 'Blue', 'Black']), - '42088': ('#c2fcd9', '#a0e4b0', '#f8fba2', '#fa7f7f', ['Green', 'Yellow', 'Red', 'Summer', 'Bright', 'Spring']), - '41796': ('#425e92', '#0c81f6', '#5fe1d9', '#f7fad1', ['Blue', 'Blue', 'Turquoise', 'Yellow']), - '41771': ('#247291', '#f8da5b', '#eef2e2', '#f5f9ee', ['Blue', 'Yellow', 'Grey']), - '41748': ('#fff200', '#f5f5f5', '#d6e6f2', '#303841', ['Yellow', 'Grey', 'Black', 'Bright']), - '41747': ('#015668', '#06648c', '#0f81c7', '#0de2ea', ['Blue', 'Blue', 'Blue', 'Turquoise', 'Cold']), - '41721': ('#70198a', '#bb8fa9', '#c1ea9f', '#f6f1f8', ['Purple', 'Green', 'Grey', 'Wedding', 'Retro']), - '41625': ('#2f2b2b', '#f3368d', '#ffc468', '#fff7ca', ['Black', 'Pink', 'Orange', 'Yellow']), - '41622': ('#afffff', '#74dbef', '#5e88fc', '#264e86', ['Blue', 'Cold']), - '41314': ('#2a3356', '#f35b25', '#fdfcfc', '#e8e2e2', ['Blue', 'Orange', 'Grey', 'Retro']), - '41115': ('#45171d', '#e84a5f', '#ff847c', '#fecea8', ['Brown', 'Red', 'Orange']), - '41029': ('#c190f0', '#9876de', '#fdfe9a', '#9adeb9', ['Purple', 'Purple', 'Yellow', 'Green']), - '41025': ('#f4f7f7', '#79a8a9', '#4d727e', '#1f4e5f', ['Grey', 'Turquoise', 'Cold']), - '41482': ('#00ad7c', '#52d681', '#b5ff7d', '#fff8b5', ['Green', 'Yellow']), - '41089': ('#f85f73', '#fbe8d3', '#928a97', '#283c63', ['Red', 'Grey', 'Blue']), - '39932': ('#295e62', '#1c4648', '#d5d46f', '#dff09d', ['Turquoise', 'Yellow']), - '40871': ('#baf5f0', '#d17ae5', '#e889e5', '#f9fcc9', ['Blue', 'Purple', 'Pink', 'Yellow', 'Spring', 'Bright']), - '40803': ('#fcf0c8', '#f7d098', '#911f27', '#630a10', ['Yellow', 'Red', 'Warm']), - '40848': ('#95efce', '#2ea1d9', '#395ea6', '#3e467f', ['Turquoise', 'Blue']), - '40787': ('#f9fcfd', '#c9eff9', '#07a4b5', '#fed8a7', ['Blue', 'Orange']), - '39481': ('#392f2f', '#3a7563', '#59a985', '#e6d3a7', ['Brown', 'Green']), - '40181': ('#fafafa', '#ff347f', '#c9356c', '#f48db4', ['Grey', 'Pink']), - '39112': ('#ffffe7', '#c6e5f3', '#539ddb', '#084a83', ['Yellow', 'Blue', 'Cold']), - '40128': ('#fa4659', '#feffe4', '#a3de83', '#2eb872', ['Red', 'Yellow', 'Green', 'Spring']), - '40377': ('#f5f5f5', '#c5d200', '#51710a', '#424242', ['Grey', 'Green', 'Green', 'Grey']), - '40297': ('#c7ffff', '#fbeeff', '#ebc6ff', '#7e80ff', ['Blue', 'Pink', 'Bright']), - '42666': ('#900c27', '#c70039', '#f6c667', '#f1f8fd', ['Red', 'Yellow', 'Orange', 'Warm']), - '41743': ('#003744', '#1a554f', '#fda856', '#f6fe91', ['Green', 'Orange', 'Yellow']), - '39602': ('#ffcfdf', '#fefdca', '#e0f9b5', '#a5dee5', ['Pink', 'Yellow', 'Green', 'Blue', 'Pastel', 'Spring', 'Bright']), - '40156': ('#0f1021', '#d01257', '#fb90b7', '#ffcee4', ['Black', 'Pink', 'Pink']), - '39902': ('#d7ffdf', '#ace6c0', '#77b5a6', '#9d4545', ['Green', 'Green', 'Turquoise', 'Brown']), - '38962': ('#fafafa', '#c7eeff', '#0077c0', '#1d242b', ['Grey', 'Blue', 'Black', 'Cold']), - '41475': ('#241e92', '#5432d3', '#7b6cf6', '#e5a5ff', ['Purple', 'Blue', 'Pink', 'Cold']), - '39857': ('#ffeee7', '#fbb448', '#e3670c', '#cc3d0b', ['Pink', 'Orange', 'Orange', 'Autumn', 'Warm']), - '39609': ('#15b7b9', '#10ddc2', '#f5f5f5', '#f57170', ['Blue', 'Turquoise', 'Grey', 'Red']), - '39601': ('#2f3c4f', '#506e86', '#fcb040', '#de703b', ['Blue', 'Orange']), - '38861': ('#e4fffe', '#a4f6f9', '#ff99fe', '#ba52ed', ['Blue', 'Pink', 'Purple', 'Bright']), - '39305': ('#083836', '#66d37e', '#c6e872', '#fbffa3', ['Green', 'Yellow']), - '39666': ('#f95959', '#ffe1a1', '#fcffcc', '#d3e785', ['Red', 'Orange', 'Yellow', 'Green']), - '39614': ('#718ca1', '#59748c', '#354d62', '#d7f2f7', ['Blue', 'Turquoise', 'Cold', 'Winter']), - '39495': ('#f7e74a', '#09c6ab', '#068888', '#02556d', ['Yellow', 'Turquoise', 'Blue']), - '39065': ('#6251da', '#828bff', '#7ab7ff', '#f0fc93', ['Blue', 'Purple', 'Yellow']), - '38961': ('#eaefc4', '#9bdf46', '#25a55f', '#346473', ['Green']), - '38863': ('#f1ffd9', '#8bdbf5', '#b292ea', '#eb55bf', ['Yellow', 'Blue', 'Purple', 'Pink', 'Spring']), - '39317': ('#2b4450', '#497285', '#dfebed', '#f78536', ['Turquoise', 'Blue', 'Orange']), - '38824': ('#f1fafb', '#a0e4f1', '#9dc6ff', '#4993fa', ['Turquoise', 'Blue', 'Cold']), - '39056': ('#513c3c', '#2a769a', '#41c3be', '#f7f36b', ['Brown', 'Blue', 'Turquoise', 'Yellow']), - '38857': ('#ecffc9', '#64fed6', '#82a6ee', '#7871bf', ['Yellow', 'Turquoise', 'Blue', 'Purple']), - '39176': ('#fffc3a', '#ea648d', '#884ea2', '#3d3551', ['Yellow', 'Pink', 'Purple']), - '38817': ('#e6f8f6', '#a0f6d2', '#72dfd0', '#03414d', ['Turquoise']), - '39631': ('#683531', '#bf382a', '#ef7079', '#f7e8c3', ['Brown', 'Red', 'Yellow', 'Warm']), - '38641': ('#d1ffa2', '#00cf95', '#0098ef', '#6d0ad3', ['Green', 'Blue', 'Purple']), - '38340': ('#2f3032', '#383a56', '#b0a565', '#ede68a', ['Black', 'Blue', 'Yellow', 'Dark']), - '38642': ('#d5fdff', '#9de5ff', '#aca8ff', '#ac73ff', ['Blue', 'Purple', 'Cold']), - '38618': ('#01005e', '#22267b', '#28518a', '#17b794', ['Blue', 'Green', 'Cold', 'Dark', 'Winter']), - '38654': ('#b062ea', '#f392f2', '#fed08f', '#f6f39f', ['Purple', 'Pink', 'Orange', 'Yellow', 'Bright']), - '38301': ('#d2fafb', '#5acfd6', '#189bfa', '#0c4b8e', ['Turquoise', 'Blue', 'Cold']), - '38724': ('#feffa0', '#acdb86', '#547c66', '#3b5b5d', ['Yellow', 'Green']), - '38497': ('#c9182b', '#f23a3a', '#e3f3ac', '#44c662', ['Red', 'Green', 'Christmas']), - '38290': ('#3f1263', '#986ead', '#d8cbbb', '#f2f2f2', ['Purple', 'Purple', 'Brown', 'Grey']), - '38288': ('#f1fdf3', '#e5f4e7', '#d1e9d2', '#99cda9', ['Green', 'Green', 'Green', 'Green']), - '37482': ('#5f2f14', '#1297bd', '#1ad7db', '#f3f1f1', ['Brown', 'Blue', 'Grey', 'Vintage', 'Wedding']), - '37362': ('#00334e', '#145374', '#5588a3', '#e8e8e8', ['Blue', 'Grey', 'Cold', 'Winter']), - '37243': ('#f5ff8d', '#50cb86', '#4c74c9', '#312f44', ['Yellow', 'Green', 'Blue', 'Black']), - '37155': ('#283739', '#2c5d63', '#a2c11c', '#e0e0e0', ['Black', 'Turquoise', 'Green', 'Grey']), - '38859': ('#fbffe0', '#ffd6a6', '#ff8ab4', '#d86eff', ['Yellow', 'Orange', 'Pink', 'Purple', 'Spring']), - '37340': ('#0c4762', '#51dacf', '#9ef5cf', '#f4eeee', ['Turquoise', 'Grey']), - '42937': ('#700961', '#b80d57', '#e03e36', '#ff7c38', ['Purple', 'Orange', 'Warm']), - '37026': ('#0eb29a', '#f5fdff', '#ddf0c2', '#8c999a', ['Turquoise', 'Green', 'Grey']), - '37211': ('#39627f', '#4b788f', '#e4de66', '#beb000', ['Blue', 'Green']), - '38164': ('#d65f5f', '#faf99f', '#a1f6b6', '#78d8d0', ['Red', 'Yellow', 'Turquoise', 'Green']), - '36953': ('#3c2f3d', '#2eac6d', '#9dda52', '#f0f0f0', ['Black', 'Green', 'Green', 'Grey']), - '36842': ('#f2f299', '#c8e29d', '#5e9387', '#58828b', ['Yellow', 'Green']), - '36777': ('#fff9c1', '#ffa1d0', '#c244fb', '#84e9ff', ['Yellow', 'Pink', 'Purple', 'Blue']), - '36668': ('#005689', '#007cb9', '#f6c667', '#f1f8fd', ['Blue', 'Orange']), - '36477': ('#00e0ff', '#74f9ff', '#a6fff2', '#e8ffe8', ['Blue', 'Bright', 'Summer']), - '36237': ('#b23256', '#fcd47d', '#31aa75', '#a2ef44', ['Red', 'Yellow', 'Green', 'Christmas']), - '36487': ('#fffaa2', '#d600b1', '#a500a3', '#680097', ['Yellow', 'Purple']), - '36394': ('#64868e', '#98b4a6', '#d1e4d1', '#f3fbf1', ['Turquoise', 'Green', 'Grey', 'Green']), - '38862': ('#f4f1ae', '#ff8d52', '#f85a16', '#ca005e', ['Yellow', 'Orange', 'Purple', 'Warm']), - '36181': ('#007ab5', '#005a85', '#004262', '#d8e6ec', ['Blue', 'Cold']), - '38613': ('#fffbaf', '#ff5656', '#cd0a0a', '#42cfc4', ['Yellow', 'Red', 'Red', 'Turquoise']), - '36185': ('#442a9d', '#f14e95', '#b13cd5', '#faf3fc', ['Purple', 'Pink']), - '36113': ('#191ba9', '#5cc2f2', '#c1eaf2', '#f7f3f3', ['Blue', 'Grey', 'Cold']), - '36041': ('#fd5959', '#ff9c6d', '#fcff82', '#afc5ff', ['Red', 'Orange', 'Yellow', 'Blue']), - '36105': ('#43496e', '#544d7e', '#65589c', '#ffc12d', ['Purple', 'Orange']), - '35990': ('#fcf798', '#e0fff9', '#74d2ff', '#5ca4ca', ['Yellow', 'Blue', 'Bright']), - '35881': ('#fcfaef', '#e2e0a5', '#d3504a', '#a63636', ['Brown', 'Red', 'Vintage']), - '35742': ('#fe7187', '#ca4b7c', '#7a2e7a', '#a8d7f7', ['Pink', 'Purple', 'Blue']), - '35642': ('#daebee', '#b6d7de', '#fcedda', '#ff5126', ['Blue', 'Orange', 'Wedding']), - '35780': ('#07588a', '#6ac1b8', '#bfe9db', '#e1f6f4', ['Blue', 'Turquoise', 'Green', 'Cold']), - '35644': ('#f8ecd9', '#eebee3', '#c576ac', '#662753', ['Yellow', 'Pink', 'Purple']), - '35619': ('#f8ffae', '#f36363', '#ef4a4a', '#d32d2d', ['Yellow', 'Orange', 'Red', 'Warm']), - '35489': ('#e8ecf1', '#b5cfd8', '#7393a7', '#6c737e', ['Grey', 'Blue', 'Winter', 'Pastel', 'Cold']), - '36435': ('#f2ff9b', '#6af79a', '#57acc5', '#444b6c', ['Yellow', 'Green', 'Blue']), - '35271': ('#65ead1', '#f469a9', '#ff917b', '#fcffc1', ['Turquoise', 'Pink', 'Orange', 'Yellow', 'Retro', 'Spring']), - '35497': ('#303841', '#3a4750', '#d72323', '#eeeeee', ['Red', 'Grey']), - '35469': ('#e4fcf9', '#ace6f6', '#4b89ac', '#446491', ['Blue', 'Cold']), - '35159': ('#ee9494', '#ebffaf', '#b4e8c0', '#c3b9ea', ['Red', 'Yellow', 'Green', 'Purple', 'Bright']), - '34110': ('#6f4f8b', '#6d739d', '#7dbcc8', '#b9eaf5', ['Purple', 'Blue']), - '34098': ('#2794eb', '#bff8d4', '#47d6b6', '#17b3c1', ['Blue', 'Turquoise', 'Green']), - '41371': ('#f5f5f5', '#b9e937', '#57d131', '#406661', ['Grey', 'Green']), - '37188': ('#2e94b9', '#fffdc1', '#f0b775', '#d25565', ['Blue', 'Yellow', 'Orange', 'Red']), - '34781': ('#3c9099', '#5fbdb0', '#e3e2c3', '#f0efe2', ['Turquoise', 'Grey', 'Pastel']), - '34104': ('#c4317b', '#ac7c7c', '#d0baa8', '#efe4e4', ['Purple', 'Brown']), - '34002': ('#48f3db', '#51c4e9', '#6150c1', '#4a3764', ['Turquoise', 'Blue', 'Purple', 'Cold']), - '34608': ('#7a4579', '#d56073', '#ec9e69', '#ffff8f', ['Purple', 'Red', 'Orange', 'Yellow', 'Sunset', 'Wedding', 'Warm']), - '33990': ('#f7fbfc', '#d6e6f2', '#b9d7ea', '#769fcd', ['Grey', 'Blue', 'Bright', 'Cold']), - '33743': ('#343434', '#2d4059', '#ea5455', '#fde9c9', ['Black', 'Blue', 'Red', 'Yellow']), - '33592': ('#ebe8be', '#b3c87a', '#347a2a', '#202e24', ['Green']), - '33357': ('#415f77', '#d1e9ea', '#fc5050', '#ffd00c', ['Blue', 'Red', 'Yellow']), - '35508': ('#f7b679', '#e77c7c', '#b55c6c', '#61305d', ['Orange', 'Purple']), - '33208': ('#062d92', '#046fdb', '#03d6d2', '#fffcbf', ['Blue', 'Blue', 'Turquoise', 'Yellow']), - '33261': ('#4b2b30', '#5e3b4d', '#aa96b7', '#d9e2a8', ['Brown', 'Purple', 'Purple', 'Green']), - '33148': ('#f4fab3', '#a4eae8', '#53aca8', '#498eb9', ['Yellow', 'Blue', 'Turquoise', 'Summer']), - '32736': ('#dddddd', '#516c8d', '#28385e', '#304163', ['Grey', 'Blue', 'Cold']), - '32822': ('#b8eef1', '#bf68f6', '#fd89dd', '#f0e48e', ['Blue', 'Purple', 'Pink', 'Yellow', 'Bright', 'Retro']), - '32734': ('#cabfab', '#dfd8c8', '#41444b', '#52575d', ['Brown', 'Brown', 'Grey', 'Grey']), - '32512': ('#041122', '#259073', '#7fda89', '#e6f99d', ['Black', 'Turquoise', 'Green', 'Yellow']), - '32089': ('#ff9090', '#ffcf7f', '#fffa62', '#89c4ff', ['Pink', 'Orange', 'Yellow', 'Blue']), - '32030': ('#2daf94', '#3ec8ac', '#4be4c5', '#c8f6ed', ['Turquoise']), - '32519': ('#ffdbc5', '#ef4339', '#b01c33', '#2e112d', ['Orange', 'Red', 'Black', 'Warm']), - '31443': ('#9ddcdc', '#fff4e1', '#ffebb7', '#e67a7a', ['Blue', 'Yellow', 'Red']), - '32487': ('#414a50', '#85a6b1', '#8bd7d1', '#caedde', ['Grey', 'Turquoise', 'Blue', 'Cold']), - '33469': ('#f72464', '#ff858a', '#fff3a7', '#568564', ['Red', 'Pink', 'Yellow', 'Green', 'Spring']), - '31016': ('#54777d', '#eadb9d', '#feffe4', '#e7e3c5', ['Turquoise', 'Brown', 'Yellow']), - '30601': ('#384137', '#406661', '#3bb873', '#94ed88', ['Green']), - '32018': ('#83580b', '#d9b650', '#f5dd7b', '#fde994', ['Brown', 'Yellow', 'Gold']), - '32571': ('#4f1c4c', '#a91d1d', '#da4949', '#fde9c9', ['Purple', 'Red']), - '31046': ('#ffa5a5', '#ffffc2', '#c8e7ed', '#bfcfff', ['Pink', 'Yellow', 'Blue', 'Pastel', 'Summer', 'Bright']), - '31006': ('#f0f2ac', '#a7cbd9', '#7e94bf', '#5357a6', ['Yellow', 'Blue']), - '29213': ('#93e4c1', '#3baea0', '#118a7e', '#1f6f78', ['Green', 'Turquoise']), - '30356': ('#121435', '#faf9f0', '#edebca', '#ff5722', ['Black', 'Yellow', 'Orange']), - '30546': ('#1d2b53', '#7e2553', '#ff004d', '#fff024', ['Blue', 'Red', 'Yellow']), - '29954': ('#f5f5f5', '#b9e937', '#00b906', '#424242', ['Grey', 'Green', 'Green', 'Grey']), - '30296': ('#353e55', '#b36458', '#bcd3c2', '#e0e7b8', ['Vintage']), - '29746': ('#591fce', '#0c9cee', '#3dbdc2', '#a1f480', ['Purple', 'Blue', 'Turquoise', 'Green']), - '30670': ('#da1212', '#f08c00', '#c6da20', '#f3f5d5', ['Red', 'Orange', 'Green', 'Yellow', 'Autumn', 'Christmas']), - '30163': ('#fafafa', '#e1eeff', '#c2cfd8', '#543a3a', ['Grey', 'Blue', 'Brown', 'Vintage', 'Wedding', 'Cold']), - '29652': ('#b8f7d4', '#6fe7db', '#7fa6ee', '#835af1', ['Green', 'Turquoise', 'Blue', 'Purple']), - '32264': ('#fdffa3', '#f59af0', '#a980e4', '#a2e4a2', ['Yellow', 'Pink', 'Purple', 'Green']), - '29637': ('#61b292', '#aed09e', '#f1e8a7', '#a8896c', ['Green', 'Yellow', 'Brown']), - '30252': ('#1f024c', '#45056e', '#8f1383', '#e47676', ['Purple', 'Orange', 'Dark']), - '29275': ('#f87d09', '#f6f6f6', '#a7cdcc', '#004a55', ['Orange', 'Grey', 'Turquoise']), - '28905': ('#1a1a1b', '#333f44', '#37aa9c', '#94f3e4', ['Black', 'Turquoise']), - '29979': ('#e0c97e', '#fcf8b3', '#fb9378', '#ab6088', ['Brown', 'Yellow', 'Orange', 'Purple']), - '30285': ('#efecea', '#334854', '#e04462', '#f9c535', ['Grey', 'Black', 'Red', 'Yellow']), - '29318': ('#504d4d', '#646363', '#f5b316', '#e7e5e5', ['Grey', 'Grey', 'Yellow', 'Grey']), - '28937': ('#17e7a4', '#f6f1f1', '#e0d909', '#7d7474', ['Green', 'Grey', 'Yellow']), - '29636': ('#89aa97', '#f4e3b7', '#fff798', '#fd7e89', ['Green', 'Yellow', 'Red', 'Spring']), - '28684': ('#0e1555', '#4e1184', '#932b77', '#fd367e', ['Purple', 'Pink']), - '28636': ('#015051', '#04837b', '#01a7a3', '#04f2d5', ['Turquoise']), - '28621': ('#303841', '#3a4750', '#f6c90e', '#f64e8b', ['Black', 'Yellow', 'Pink']), - '28624': ('#c8b273', '#834655', '#9f5069', '#f6cac9', ['Brown', 'Pink']), - '28505': ('#fff5b5', '#ff9071', '#e85395', '#a73ccb', ['Yellow', 'Orange', 'Pink', 'Purple', 'Spring']), - '28465': ('#9bf4d5', '#29cdb5', '#fff3e1', '#373331', ['Turquoise', 'Turquoise', 'Yellow', 'Black']), - '28797': ('#083c5a', '#4cb648', '#fcc72c', '#e4f4fd', ['Blue', 'Green', 'Yellow']), - '28270': ('#fdea2e', '#f40968', '#512e5e', '#20194a', ['Yellow', 'Pink', 'Purple', 'Black']), - '27893': ('#9a47cb', '#ff80f3', '#ffd48b', '#fff079', ['Purple', 'Pink', 'Orange', 'Yellow']), - '26451': ('#15eda3', '#0ea47a', '#068b80', '#127780', ['Green']), - '28174': ('#f5d7a1', '#f0a28e', '#ba6476', '#812d58', ['Yellow', 'Orange', 'Purple', 'Autumn', 'Warm']), - '27119': ('#bbe9db', '#aeccc6', '#9ba6a5', '#757a79', ['Grey', 'Turquoise']), - '27158': ('#020438', '#284184', '#1f8ea3', '#00eaff', ['Blue', 'Turquoise', 'Cold']), - '26949': ('#4ae3b5', '#eeeeee', '#2a5d67', '#171332', ['Turquoise', 'Grey', 'Black']), - '27422': ('#f2ef99', '#de8ae8', '#972ea9', '#6a0e97', ['Yellow', 'Purple']), - '26375': ('#f36b6b', '#ece58a', '#1fb57b', '#84d270', ['Red', 'Yellow', 'Green']), - '25912': ('#003e21', '#067242', '#098b54', '#f8d098', ['Green', 'Green', 'Green', 'Orange']), - '25843': ('#ffe700', '#fe4e6e', '#613864', '#d8d7d7', ['Yellow', 'Pink', 'Purple', 'Grey']), - '25796': ('#f1fcfd', '#c7eeff', '#4d6de3', '#393737', ['Blue', 'Black', 'Cold']), - '24652': ('#000000', '#3e3636', '#d72323', '#f5eded', ['Black', 'Grey', 'Red', 'Dark']), - '25644': ('#feff9f', '#78dec9', '#2a6f7f', '#0e2033', ['Yellow', 'Turquoise', 'Turquoise', 'Black']), - '25451': ('#fff29c', '#ffb26b', '#ff639f', '#ff2865', ['Yellow', 'Orange', 'Pink', 'Red']), - '25729': ('#222831', '#393e46', '#00adb5', '#00fff5', ['Black', 'Blue', 'Cold', 'Dark']), - '24114': ('#cff800', '#feff92', '#0fefbd', '#7899dc', ['Green', 'Yellow', 'Turquoise', 'Blue']), - '24625': ('#240747', '#eb2632', '#f0ab8d', '#f6e4ad', ['Black', 'Red', 'Pink', 'Yellow']), - '24484': ('#76508e', '#482d57', '#03c1eb', '#86f3b8', ['Purple', 'Blue', 'Green']), - '24360': ('#fefea4', '#ffdc76', '#773838', '#4a2c2c', ['Yellow', 'Brown', 'Warm']), - '23782': ('#f79486', '#faf885', '#fcffc9', '#8ff5d2', ['Red', 'Yellow', 'Turquoise']), - '21781': ('#222831', '#2d4059', '#ff5722', '#eeeeee', ['Black', 'Orange', 'Grey', 'Dark']), - '23588': ('#a20a0a', '#bb9518', '#ccd51a', '#f7ffa8', ['Red', 'Brown', 'Yellow']), - '23083': ('#28615b', '#e4f6f6', '#ccccea', '#c089f8', ['Turquoise', 'Turquoise', 'Purple', 'Purple']), - '22672': ('#0c056d', '#590d82', '#b61aae', '#f25d9c', ['Blue', 'Purple', 'Purple', 'Pink']), - '22660': ('#fdf196', '#c5fcda', '#98e5ec', '#67bac6', ['Yellow', 'Blue', 'Bright']), - '22272': ('#f9f7f7', '#dbe2ef', '#3f72af', '#112d4e', ['Grey', 'Blue', 'Black', 'Cold']), - '20916': ('#222831', '#393e46', '#fd7014', '#eeeeee', ['Black', 'Grey', 'Orange', 'Dark']), - '21046': ('#83e4b5', '#3ec8ac', '#4e90a4', '#6e60a0', ['Green', 'Turquoise', 'Blue', 'Purple']), - '20752': ('#27e1ce', '#efffb7', '#d6ec78', '#ff98da', ['Turquoise', 'Yellow', 'Green', 'Pink', 'Spring', 'Bright']), - '20933': ('#f7f6de', '#fa7e0a', '#8f0e0e', '#530c0c', ['Orange', 'Red', 'Brown', 'Autumn', 'Halloween', 'Warm']), - '20614': ('#f8ff95', '#7be77e', '#7a8cf0', '#a45fe6', ['Yellow', 'Green', 'Blue', 'Purple']), - '20605': ('#300532', '#aa3763', '#f6dec4', '#fef8dd', ['Purple', 'Purple', 'Yellow', 'Yellow']), - '20660': ('#faf8f8', '#17ead9', '#6078ea', '#4b4848', ['Grey', 'Turquoise', 'Blue', 'Grey']), - '20333': ('#3e3e3e', '#f4722b', '#f6e7c1', '#b3a78c', ['Grey', 'Orange', 'Autumn']), - '19659': ('#fa5555', '#f7fb76', '#8ded8e', '#2d7d8f', ['Red', 'Yellow', 'Green', 'Turquoise']), - '20198': ('#055049', '#069a8e', '#a1e3d8', '#f5f093', ['Turquoise', 'Yellow']), - '20288': ('#fffbe0', '#fcda05', '#393e46', '#222831', ['Yellow', 'Black']), - '19949': ('#ffdd00', '#f64e8b', '#a01ba7', '#452b45', ['Yellow', 'Pink', 'Purple']), - '19832': ('#001f3f', '#083358', '#0da574', '#ffd717', ['Blue', 'Green', 'Yellow']), - '26363': ('#ea5959', '#f98b60', '#ffc057', '#ffe084', ['Red', 'Orange', 'Yellow', 'Warm']), - '19897': ('#fbffa3', '#c6e872', '#66d37e', '#0d625e', ['Yellow', 'Green']), - '19148': ('#468966', '#fff0a5', '#ffb03b', '#b64926', ['Green', 'Yellow', 'Orange', 'Gold']), - '19775': ('#7bc74d', '#222831', '#393e46', '#eeeeee', ['Green', 'Black', 'Grey']), - '19337': ('#faa9df', '#fae98f', '#f04f4f', '#810749', ['Pink', 'Yellow', 'Red', 'Purple']), - '19020': ('#743c08', '#df760b', '#f6b61e', '#ffebaf', ['Brown', 'Orange', 'Yellow', 'Warm', 'Gold']), - '19113': ('#303841', '#00adb5', '#eeeeee', '#ff5722', ['Black', 'Turquoise', 'Grey', 'Orange', 'Retro']), - '18933': ('#f9ebc4', '#a7cf5d', '#a97555', '#483d3c', ['Green', 'Brown']), - '18919': ('#e6ee75', '#da4949', '#4f1c4c', '#0d132a', ['Yellow', 'Orange', 'Purple', 'Black']), - '18915': ('#6163d3', '#6db7ca', '#fcf769', '#ffd23e', ['Blue', 'Yellow']), - '18612': ('#6fe7dd', '#3490de', '#6639a6', '#521262', ['Turquoise', 'Blue', 'Purple']), - '18378': ('#303841', '#3a4750', '#f6c90e', '#eeeeee', ['Black', 'Yellow', 'Grey', 'Dark']), - '18562': ('#fcffc1', '#9bf4d5', '#1dad9b', '#346357', ['Yellow', 'Turquoise']), - '18221': ('#2b1f31', '#413d65', '#5fb9b0', '#bef992', ['Black', 'Purple', 'Turquoise', 'Green', 'Dark']), - '18914': ('#fbff7c', '#ffe35e', '#e4663a', '#92253f', ['Yellow', 'Orange', 'Red', 'Warm']), - '18473': ('#eb76ff', '#ffa8ec', '#ffccfc', '#fbffb1', ['Purple', 'Pink', 'Pink', 'Yellow', 'Bright']), - '18160': ('#283739', '#2c5d63', '#a9c52f', '#f7eebb', ['Black', 'Turquoise', 'Green', 'Yellow']), - '18085': ('#29d2e4', '#13829b', '#fcc29a', '#fde9c9', ['Blue', 'Turquoise', 'Orange']), - '16545': ('#26252c', '#e54861', '#f2a379', '#efd5b7', ['Black', 'Red', 'Orange', 'Orange']), - '18916': ('#e9f679', '#9bdf46', '#25a55f', '#346473', ['Yellow', 'Green', 'Blue']), - '17722': ('#a42127', '#c83b3b', '#ef9b59', '#fee785', ['Red', 'Orange', 'Yellow', 'Warm']), - '17117': ('#08d9d6', '#252a34', '#ff2e63', '#eaeaea', ['Turquoise', 'Black', 'Red', 'Grey']), - '17726': ('#e3dfc8', '#f5f1da', '#808c6c', '#fdac61', ['Brown', 'Green', 'Orange', 'Wedding', 'Autumn']), - '16615': ('#432f44', '#ea5455', '#a7425c', '#ffd460', ['Black', 'Red', 'Yellow']), - '19373': ('#fefea4', '#fed96b', '#fc92e3', '#ee7cff', ['Yellow', 'Pink']), - '16256': ('#27323a', '#435055', '#29a19c', '#a3f7bf', ['Black', 'Grey', 'Turquoise', 'Green', 'Dark']), - '17143': ('#e4f1fe', '#8dc6ff', '#22313f', '#34495e', ['Blue', 'Black', 'Cold']), - '17190': ('#902424', '#d9af5d', '#cede48', '#e9efba', ['Red', 'Orange', 'Yellow', 'Green', 'Christmas']), - '17001': ('#e4f68f', '#50c19a', '#686354', '#444036', ['Green', 'Brown']), - '16467': ('#2c2d34', '#e94822', '#f2910a', '#efd510', ['Black', 'Orange', 'Yellow', 'Warm']), - '15881': ('#3e1e68', '#583c87', '#e45a84', '#ffacac', ['Purple', 'Purple', 'Pink']), - '17826': ('#b2e672', '#fffd88', '#ffd478', '#f96b85', ['Green', 'Yellow', 'Red', 'Summer', 'Bright']), - '16765': ('#ff7676', '#f6f49d', '#5dae8b', '#466c95', ['Red', 'Yellow', 'Green', 'Blue']), - '15662': ('#260980', '#283996', '#3aa3c1', '#f6ffd2', ['Blue', 'Yellow', 'Cold']), - '17140': ('#fffcca', '#55e9bc', '#11d3bc', '#537780', ['Yellow', 'Green', 'Turquoise', 'Summer']), - '14886': ('#403121', '#a65e09', '#ed9728', '#faf494', ['Brown', 'Orange', 'Yellow', 'Warm', 'Gold']), - '16579': ('#88bef5', '#ba53de', '#f469a9', '#f4fa9c', ['Blue', 'Purple', 'Pink', 'Yellow']), - '15830': ('#364f6b', '#3fc1c9', '#f5f5f5', '#fc5185', ['Blue', 'Turquoise', 'Grey', 'Pink']), - '16617': ('#e6e6e6', '#fad662', '#e57b5c', '#be4747', ['Grey', 'Yellow', 'Orange', 'Red', 'Gold']), - '16255': ('#423737', '#5d5d5d', '#00adb5', '#a3f7bf', ['Grey', 'Blue', 'Green']), - '15697': ('#e23e57', '#88304e', '#522546', '#311d3f', ['Red', 'Purple']), - '15541': ('#f8f8f8', '#faebcd', '#f7c873', '#434343', ['Grey', 'Yellow', 'Black', 'Gold']), - '14881': ('#303841', '#47555e', '#7aa5d2', '#eeeeee', ['Black', 'Grey', 'Blue', 'Cold']), - '14832': ('#e4f9f5', '#30e3ca', '#11999e', '#40514e', ['Turquoise', 'Grey', 'Cold']), - '15473': ('#57385c', '#a75265', '#ec7263', '#febe7e', ['Purple', 'Orange', 'Vintage', 'Warm']), - '15211': ('#ffee7d', '#534c98', '#b767ff', '#44fadd', ['Yellow', 'Purple', 'Purple', 'Turquoise']), - '15458': ('#222831', '#393e46', '#ff5722', '#eeeeee', ['Black', 'Grey', 'Orange']), - '14587': ('#bb2253', '#ec185d', '#ff9171', '#ffb383', ['Red', 'Orange']), - '13930': ('#2bcdc1', '#38817a', '#393e46', '#f66095', ['Turquoise', 'Grey', 'Pink']), - '13136': ('#f7fdb6', '#a4d792', '#21825c', '#424141', ['Yellow', 'Green']), - '12715': ('#fef0ff', '#d6c8ff', '#c79ecf', '#7e6bc4', ['Pink', 'Pink', 'Purple', 'Purple']), - '12370': ('#f78536', '#dfebed', '#497285', '#2b4450', ['Orange', 'Blue', 'Turquoise']), - '14114': ('#3ec1d3', '#f6f7d7', '#ff9a00', '#ff165d', ['Blue', 'Yellow', 'Orange', 'Red']), - '13933': ('#4a304d', '#b17179', '#ffb37b', '#fff199', ['Purple', 'Orange', 'Yellow', 'Sunset', 'Warm']), - '14339': ('#fce38a', '#0e5f76', '#083d56', '#0c2233', ['Yellow', 'Blue', 'Black']), - '13712': ('#4d606e', '#3fbac2', '#d3d4d8', '#f5f5f5', ['Blue', 'Grey', 'Grey', 'Cold']), - '14963': ('#ffef6f', '#ff9757', '#d84545', '#7b3030', ['Yellow', 'Orange', 'Red', 'Brown', 'Warm']), - '10150': ('#e5fcc2', '#9de0ad', '#45ada8', '#547980', ['Green', 'Turquoise']), - '14818': ('#ff5a5a', '#ffb072', '#f9ffa5', '#aabbff', ['Red', 'Orange', 'Yellow', 'Blue']), - '13607': ('#9bb899', '#fcceaa', '#f5827d', '#ea4961', ['Green', 'Orange', 'Red']), - '14684': ('#23425f', '#a64942', '#ff7844', '#ffab5e', ['Blue', 'Brown', 'Orange', 'Warm']), - '12509': ('#106ee8', '#0fc1a1', '#90e0ab', '#cbffce', ['Blue', 'Turquoise', 'Green']), - '14490': ('#eff2dd', '#fcda05', '#ee4848', '#5c3551', ['Grey', 'Yellow', 'Red', 'Purple']), - '12508': ('#5d414d', '#7e858b', '#abd4c1', '#e5f6c6', ['Brown', 'Grey', 'Green', 'Yellow']), - '13096': ('#222832', '#2f3847', '#e7a117', '#c57f1e', ['Black', 'Grey', 'Orange', 'Brown']), - '11346': ('#2be5a6', '#b5ffc7', '#f37ef9', '#904ca7', ['Green', 'Pink', 'Purple']), - '13941': ('#fbef7c', '#f1ac59', '#c93737', '#ff6898', ['Yellow', 'Orange', 'Red', 'Pink']), - '13837': ('#331940', '#5e366a', '#0cca98', '#00ffcc', ['Black', 'Purple', 'Turquoise', 'Retro']), - '14207': ('#fffd75', '#60e550', '#3b6ac0', '#6e3274', ['Yellow', 'Green', 'Blue', 'Purple']), - '12457': ('#cefff1', '#ace7ef', '#a6acec', '#a56cc1', ['Turquoise', 'Blue', 'Purple', 'Cold']), - '13313': ('#2a363b', '#e84a5f', '#ff847c', '#fecea8', ['Black', 'Red', 'Red', 'Orange']), - '13305': ('#e3e7b3', '#f6ffe2', '#e4ce8e', '#d77948', ['Yellow', 'Brown', 'Orange']), - '12461': ('#38486f', '#584f84', '#876a96', '#d7c1e0', ['Purple']), - '11752': ('#0278ae', '#51dacf', '#9ef5cf', '#e8ffc1', ['Blue', 'Turquoise', 'Yellow']), - '13139': ('#e14242', '#8d3434', '#eacd65', '#ebebcd', ['Red', 'Red', 'Orange', 'Yellow']), - '11685': ('#fff395', '#7459dc', '#41b3ff', '#63f5ef', ['Yellow', 'Purple', 'Blue', 'Turquoise']), - '12081': ('#ffc8c8', '#ff9999', '#444f5a', '#3e4149', ['Pink', 'Black']), - '9409': ('#ffde74', '#ffa974', '#ff715a', '#ff3757', ['Yellow', 'Orange', 'Orange', 'Red']), - '10701': ('#1a2f4b', '#28475c', '#2f8886', '#84c69b', ['Turquoise', 'Green']), - '11196': ('#faee5a', '#e4fcf9', '#ace6f6', '#4b89ac', ['Yellow', 'Blue']), - '12280': ('#f8e796', '#c98b70', '#635270', '#363863', ['Yellow', 'Orange', 'Purple']), - '9385': ('#d8fff1', '#78e4d4', '#b485d8', '#5b73a7', ['Turquoise', 'Purple', 'Blue']), - '11000': ('#f1f1f1', '#ff41ed', '#8109b7', '#0c1845', ['Grey', 'Pink', 'Purple', 'Black']), - '10468': ('#f1fafb', '#a0e4f1', '#7ea6f4', '#4a4de7', ['Blue', 'Cold', 'Wedding']), - '11994': ('#fe7847', '#ca2c3f', '#a21738', '#4c0b2f', ['Orange', 'Red']), - '9375': ('#d4ffa3', '#00d8b1', '#1f9ec7', '#3f7a9c', ['Green', 'Turquoise', 'Blue']), - '9353': ('#ff5ab0', '#f7fed4', '#4df4ff', '#1bb5ec', ['Pink', 'Yellow', 'Blue', 'Blue']), - '8656': ('#152a38', '#29435c', '#556e53', '#d1d4c9', ['Black', 'Blue', 'Green', 'Grey', 'Dark']), - '9544': ('#dd4747', '#ed6d54', '#ffbe5b', '#ffe559', ['Orange', 'Yellow']), - '11237': ('#a3f7bf', '#29a19c', '#4b6289', '#60316e', ['Turquoise', 'Green', 'Blue', 'Purple']), - '11343': ('#feffcb', '#ffb576', '#ff6b83', '#c6394d', ['Yellow', 'Orange', 'Red']), - '9416': ('#3b5f41', '#66a96b', '#98e19a', '#c5f5c2', ['Green', 'Green', 'Green', 'Green']), - '10697': ('#f8c957', '#ecf0f1', '#3498db', '#34495e', ['Yellow', 'Grey', 'Blue', 'Blue']), - '10953': ('#a561ff', '#fd72ad', '#fcce9e', '#cfe3ff', ['Purple', 'Pink', 'Orange', 'Blue']), - '10792': ('#303841', '#3a4750', '#00adb5', '#eeeeee', ['Black', 'Turquoise', 'Grey', 'Dark']), - '10119': ('#37b7b5', '#a0e4e0', '#c7f6f5', '#f6b132', ['Turquoise', 'Orange']), - '9970': ('#ffee7d', '#b767ff', '#534c98', '#44fadd', ['Yellow', 'Purple', 'Purple', 'Turquoise']), - '9501': ('#ee0e51', '#e4dcef', '#505458', '#363540', ['Red', 'Pink', 'Grey', 'Black']), - '8169': ('#004182', '#118df0', '#fbffa3', '#ff4b68', ['Blue', 'Blue', 'Yellow', 'Red']), - '8863': ('#faf6ed', '#f6bf4f', '#a2453d', '#aaaaaa', ['Yellow', 'Orange', 'Brown', 'Grey', 'Autumn', 'Gold']), - '10225': ('#3d6271', '#3d899c', '#45a298', '#d8f8b7', ['Blue', 'Turquoise', 'Green']), - '9214': ('#9bcb3c', '#eff669', '#f29f3d', '#cf3333', ['Green', 'Yellow', 'Orange', 'Red', 'Summer']), - '8025': ('#73f7dd', '#2cc4cb', '#1972a4', '#2e3a87', ['Turquoise', 'Blue']), - '8765': ('#fcf5b8', '#b4cd93', '#427a5b', '#403f3f', ['Yellow', 'Green', 'Grey']), - '9834': ('#fcff89', '#fe7187', '#ca4b7c', '#6e386e', ['Yellow', 'Pink', 'Purple', 'Purple']), - '9148': ('#f33535', '#d8e9f0', '#33425b', '#29252c', ['Red', 'Blue', 'Black']), - '9506': ('#00b8a9', '#f8f3d4', '#f6416c', '#ffde7d', ['Turquoise', 'Yellow', 'Red']), - '9522': ('#433751', '#2f576e', '#748b9c', '#f0e3e3', ['Purple', 'Turquoise', 'Grey', 'Pink']), - '9585': ('#990000', '#ff6600', '#c1d343', '#f7f7cf', ['Red', 'Orange', 'Green', 'Yellow', 'Autumn', 'Retro', 'Christmas']), - '8306': ('#feff94', '#ad64c5', '#83d9ef', '#bcfff2', ['Yellow', 'Purple', 'Blue']), - '9140': ('#ffb400', '#fffbe0', '#2994b2', '#474744', ['Orange', 'Yellow', 'Blue', 'Grey']), - '8168': ('#0278ae', '#51dacf', '#9ef5cf', '#e8ffb1', ['Blue', 'Turquoise', 'Yellow']), - '9474': ('#f64662', '#c61951', '#741938', '#56132a', ['Red']), - '9084': ('#2185d5', '#3a4750', '#303841', '#f3f3f3', ['Blue', 'Grey', 'Black', 'Grey']), - '8283': ('#f4f7f7', '#aacfd0', '#79a8a9', '#1f4e5f', ['Grey', 'Turquoise', 'Blue']), - '8529': ('#83ffe1', '#7045ff', '#c768ff', '#ffaded', ['Turquoise', 'Purple', 'Pink']), - '9264': ('#ffe165', '#de4242', '#84243b', '#412135', ['Yellow', 'Red', 'Black']), - '8016': ('#d4ed9d', '#64a97b', '#3a5465', '#3d3931', ['Green', 'Green', 'Blue', 'Black']), - '8941': ('#2fc5cc', '#6df1cc', '#e3ffc3', '#ff89c0', ['Turquoise', 'Pink', 'Bright']), - '8860': ('#fcefed', '#6173f4', '#3b2e40', '#f35e3e', ['Pink', 'Blue', 'Black', 'Orange', 'Retro']), - '8011': ('#bef2eb', '#6dc995', '#3a91aa', '#6b4897', ['Blue', 'Green', 'Turquoise', 'Purple']), - '8835': ('#913131', '#e5ab39', '#c2ff6b', '#a7da46', ['Red', 'Orange', 'Green', 'Green']), - '8182': ('#7b99fa', '#53cdd8', '#96eab7', '#f1f3b8', ['Blue', 'Turquoise', 'Green', 'Yellow']), - '8634': ('#152a38', '#2f5241', '#d6cfb9', '#e4e5db', ['Green', 'Grey', 'Wedding']), - '8328': ('#a8d8ea', '#aa96da', '#fcbad3', '#ffffd2', ['Blue', 'Purple', 'Pink', 'Yellow']), - '8321': ('#f06161', '#eb786b', '#f3a871', '#e9ec82', ['Red', 'Orange', 'Yellow', 'Warm']), - '8015': ('#081f37', '#5fc9f3', '#2e79ba', '#1e549f', ['Black', 'Blue']), - '8303': ('#b2085d', '#f9c11c', '#0d8549', '#3a3d44', ['Yellow', 'Green']), - '8350': ('#dbd8e3', '#5c5470', '#352f44', '#2a2438', ['Grey', 'Purple', 'Black', 'Dark']), - '7642': ('#f38181', '#fce38a', '#eaffd0', '#95e1d3', ['Red', 'Yellow', 'Blue']), - '8171': ('#35013f', '#561050', '#951556', '#e9b5d2', ['Purple', 'Pink', 'Wedding']), - '7635': ('#c8f0f0', '#86d8dc', '#7047a3', '#3a276a', ['Blue', 'Purple']), - '8043': ('#fbe0d8', '#4d727e', '#283644', '#7a6552', ['Pink', 'Turquoise', 'Brown', 'Vintage', 'Wedding']), - '8123': ('#f6ea8c', '#f26d5b', '#c03546', '#492540', ['Yellow', 'Orange', 'Red', 'Purple', 'Warm']), - '7956': ('#155674', '#60beb3', '#79f8bb', '#f5ffae', ['Blue', 'Turquoise', 'Green', 'Yellow']), - '8029': ('#eeeeee', '#ff9966', '#e52b50', '#9c2542', ['Grey', 'Orange', 'Red']), - '8012': ('#b9bc6d', '#ffe894', '#ef765f', '#95415a', ['Green', 'Yellow', 'Orange']), - '8013': ('#353b6e', '#252243', '#74deed', '#9365db', ['Blue', 'Blue', 'Turquoise', 'Purple']), - '7938': ('#eeccb4', '#d83c65', '#4f1567', '#604cc3', ['Orange', 'Red', 'Purple']), - '8001': ('#f0d394', '#98651e', '#6e4b1f', '#533710', ['Brown']), - '7817': ('#3498db', '#ecf0f1', '#34495e', '#f1c40f', ['Blue', 'Grey', 'Orange']), - '7968': ('#ff004d', '#9d0b28', '#5a082d', '#33030d', ['Red', 'Purple', 'Black', 'Dark']), - '7908': ('#a03232', '#c86f5e', '#e6c073', '#fffeb8', ['Red', 'Red', 'Brown', 'Yellow']), - '7919': ('#f7f373', '#65d269', '#2d8b7d', '#2f64a3', ['Yellow', 'Green', 'Turquoise', 'Blue']), - '7639': ('#db5ca6', '#942e88', '#f9cc6a', '#fcff88', ['Pink', 'Purple', 'Yellow', 'Yellow']), - '7638': ('#43bfc7', '#69e9f5', '#645fce', '#40356f', ['Turquoise', 'Blue', 'Purple']), - '7636': ('#ffe0a3', '#e18237', '#943939', '#6a2634', ['Yellow', 'Orange', 'Red', 'Autumn', 'Halloween']), - '7637': ('#59b791', '#83f084', '#f3ffa1', '#f1d665', ['Green', 'Green', 'Yellow', 'Yellow']), - '7640': ('#6ea7c1', '#6b55ae', '#e67fa2', '#ffefa1', ['Turquoise', 'Purple', 'Pink', 'Yellow']), - '7641': ('#e4f5e5', '#a6dfde', '#88a6e5', '#8d6ec8', ['Green', 'Turquoise', 'Blue', 'Purple']), - '7659': ('#feff94', '#ad64c5', '#88d8ec', '#bcfff2', ['Yellow', 'Purple', 'Blue']), - '7634': ('#f0f08e', '#91ca62', '#478077', '#3a4874', ['Yellow', 'Green', 'Turquoise', 'Blue']), - '7403': ('#0b88a8', '#a6dc8c', '#dfeb95', '#095062', ['Blue', 'Green', 'Yellow']), - '7223': ('#5c4b77', '#6990e4', '#b145ad', '#f6a2d4', ['Purple', 'Blue', 'Pink']), - '6843': ('#894949', '#b2704e', '#cd9d77', '#fcc0c0', ['Brown', 'Orange', 'Pink', 'Autumn']), - '7555': ('#f2676a', '#fbe087', '#ad2959', '#62013c', ['Red', 'Yellow', 'Purple', 'Purple']), - '7429': ('#bef2ff', '#4f7097', '#93a7d1', '#1bf5af', ['Blue', 'Green', 'Retro']), - '7422': ('#241023', '#883c82', '#b7569a', '#ffbf00', ['Black', 'Purple', 'Orange']), - '7187': ('#217756', '#63b75d', '#b0d553', '#fced25', ['Green', 'Yellow']), - '7469': ('#b074e9', '#e09ee8', '#f6e97f', '#f3f74d', ['Purple', 'Purple', 'Yellow', 'Yellow']), - '6941': ('#2e3837', '#166678', '#7db9b3', '#e1f6f4', ['Turquoise', 'Cold']), - '7431': ('#cc0500', '#ef2f2a', '#ef832a', '#efac2a', ['Red', 'Orange']), - '7355': ('#422b72', '#266d98', '#3cb29a', '#c4f080', ['Purple', 'Blue', 'Turquoise', 'Green']), - '7277': ('#2c5460', '#bbdc2f', '#61b136', '#cbe0e0', ['Green', 'Grey']), - '7247': ('#2d4059', '#ea5455', '#f07b3f', '#ffd460', ['Red', 'Orange', 'Yellow', 'Warm']), - '6577': ('#430d27', '#582233', '#713045', '#c94e4e', ['Purple', 'Brown']), - '6496': ('#5585b5', '#53a8b6', '#79c2d0', '#bbe4e9', ['Blue', 'Turquoise']), - '7195': ('#118df0', '#0e2f56', '#ff304f', '#ececda', ['Blue', 'Blue', 'Red', 'Grey']), - '6679': ('#b7b9f4', '#5254d8', '#192294', '#000278', ['Purple', 'Blue']), - '7129': ('#552e5a', '#cf7979', '#f6e198', '#ecffa3', ['Purple', 'Orange', 'Yellow', 'Yellow']), - '7128': ('#853e3e', '#c15757', '#ead27a', '#f7f79b', ['Brown', 'Red', 'Yellow']), - '6482': ('#b9dbe6', '#5f818a', '#36595f', '#304852', ['Blue', 'Grey']), - '6917': ('#00c3ff', '#b463a6', '#5c4978', '#3b475e', ['Blue', 'Purple']), - '6362': ('#4cb3cd', '#52d6d3', '#5968b1', '#302579', ['Blue', 'Turquoise', 'Purple']), - '6749': ('#41646e', '#4e7376', '#c2be53', '#e4e1b0', ['Turquoise', 'Green', 'Brown']), - '6998': ('#f06868', '#fab57a', '#edf798', '#80d6ff', ['Red', 'Orange', 'Yellow', 'Blue', 'Summer']), - '6850': ('#ebedc8', '#9ab5c1', '#74698c', '#c1867b', ['Pastel']), - '6837': ('#ef5353', '#b84040', '#dbee7b', '#e2c85b', ['Red', 'Yellow']), - '5986': ('#66e1b4', '#006159', '#00796f', '#009589', ['Turquoise', 'Green', 'Green', 'Green']), - '6158': ('#352f44', '#2a2438', '#411e8f', '#310a5d', ['Black', 'Purple', 'Dark']), - '5271': ('#2f3c4f', '#506f86', '#fbb040', '#de703c', ['Blue', 'Orange']), - '6770': ('#aa1111', '#b15858', '#f2c280', '#fcf8a6', ['Red', 'Red', 'Orange', 'Yellow']), - '6644': ('#068b78', '#9ed79a', '#f2ff97', '#ffcf5e', ['Green', 'Turquoise', 'Yellow', 'Orange']), - '6713': ('#002c6a', '#e45171', '#f8a79b', '#f8d99b', ['Blue', 'Red', 'Pink', 'Yellow']), - '6379': ('#793b89', '#be2490', '#e5a0dc', '#e9bbe5', ['Purple', 'Purple', 'Pink', 'Pink']), - '6186': ('#f3cba5', '#975a5e', '#453953', '#25161b', ['Brown', 'Black', 'Vintage']), - '6588': ('#00a388', '#79bd8f', '#beeb9f', '#ffff9d', ['Green', 'Yellow']), - '6494': ('#333644', '#84577c', '#c65f63', '#e1bf7f', ['Black', 'Purple', 'Red', 'Yellow']), - '5334': ('#397298', '#8ac4ff', '#9179ef', '#7b417d', ['Blue', 'Blue', 'Purple', 'Purple']), - '6156': ('#54447b', '#49b47e', '#94dd4d', '#ffd944', ['Purple', 'Green', 'Yellow', 'Retro']), - '5895': ('#f3ff92', '#f6ce59', '#2e8fc6', '#56cfd2', ['Yellow', 'Orange', 'Blue', 'Turquoise']), - '6324': ('#827055', '#a79e8b', '#d4ceb0', '#ede7cf', ['Brown', 'Grey']), - '6303': ('#dcdada', '#d869c0', '#fffd8c', '#ffbd59', ['Grey', 'Purple', 'Yellow', 'Orange']), - '6178': ('#f0f0ef', '#edd690', '#b1bd5d', '#955a47', ['Grey', 'Orange', 'Green', 'Brown']), - '4175': ('#6b62ce', '#372e96', '#2f99ad', '#84efe2', ['Blue', 'Turquoise']), - '6131': ('#001f3f', '#083358', '#0d63a5', '#ffd717', ['Blue', 'Yellow']), - '6116': ('#d15260', '#e95c63', '#ff9d7b', '#f2f089', ['Red', 'Orange', 'Yellow']), - '6053': ('#152744', '#367591', '#61d2b4', '#9dfdc7', ['Blue', 'Turquoise', 'Green']), - '6054': ('#61bbb6', '#a1dfff', '#ad56cd', '#4a3b85', ['Turquoise', 'Blue', 'Purple']), - '5582': ('#fffac0', '#ffd79a', '#73b9d7', '#9de6e8', ['Yellow', 'Orange', 'Blue', 'Blue']), - '5979': ('#761a1a', '#c13131', '#a7cd78', '#fff279', ['Red', 'Green', 'Yellow', 'Christmas']), - '5594': ('#1b0044', '#5727a3', '#9153f4', '#d6c5f0', ['Purple', 'Purple', 'Purple', 'Purple']), - '5896': ('#f4f787', '#85eb4e', '#32c38c', '#3f84ac', ['Yellow', 'Green', 'Blue']), - '5712': ('#da5c53', '#a8e4b1', '#4aa3ba', '#306d75', ['Red', 'Green', 'Blue']), - '5831': ('#3d065a', '#b51a62', '#70d4b4', '#ddddc7', ['Purple', 'Turquoise']), - '5656': ('#80a3a2', '#abcecf', '#c4dce0', '#daf4f5', ['Grey', 'Blue']), - '5512': ('#fff07a', '#d69830', '#ab3124', '#5f233f', ['Yellow', 'Orange', 'Red', 'Purple', 'Gold']), - '5563': ('#a21232', '#1a1831', '#20615b', '#dece9c', ['Red', 'Black', 'Turquoise', 'Retro']), - '5335': ('#449187', '#91e4a6', '#5f64c0', '#453064', ['Green', 'Blue']), - '5485': ('#f35f5f', '#cc435f', '#f1ea65', '#36a3eb', ['Red', 'Yellow', 'Blue']), - '5389': ('#442d7c', '#6341b4', '#f85aca', '#dafa8b', ['Purple', 'Pink', 'Green']), - '5429': ('#51af5b', '#b3e55e', '#feed30', '#ffcb3c', ['Green', 'Yellow', 'Orange']), - '5240': ('#7696db', '#562d7d', '#ae427b', '#ff8a98', ['Blue', 'Purple', 'Pink']), - '5242': ('#80c0ce', '#467292', '#9adea2', '#c2f69b', ['Blue', 'Blue', 'Green', 'Green']), - '5308': ('#83afa6', '#58727f', '#e5e5e5', '#d3a284', ['Turquoise', 'Grey', 'Brown']), - '2763': ('#222831', '#393e46', '#00adb5', '#eeeeee', ['Black', 'Grey', 'Turquoise', 'Dark']), - '5337': ('#f3f2c9', '#f0d587', '#93af56', '#336371', ['Yellow', 'Green', 'Turquoise']), - '5272': ('#363b4e', '#4f3b78', '#927fbf', '#c4bbf0', ['Black', 'Purple', 'Dark']), - '5336': ('#e25d4e', '#a93545', '#d9528b', '#ff92e8', ['Red', 'Pink']), - '5239': ('#523f79', '#807be4', '#73cff0', '#afffea', ['Purple', 'Turquoise', 'Blue', 'Green']), - '5241': ('#eaf887', '#79dc96', '#3bbbb3', '#377aaf', ['Yellow', 'Green', 'Turquoise', 'Blue']), - '5243': ('#ff8a69', '#f06161', '#bb4272', '#7a3476', ['Orange', 'Red', 'Purple']), - '5246': ('#f6f982', '#d9d46f', '#fa5862', '#c64272', ['Yellow', 'Yellow', 'Red']), - '4994': ('#f6f6d9', '#47e4e0', '#5f81e4', '#f67ff5', ['Yellow', 'Turquoise', 'Blue', 'Pink']), - '5044': ('#51af5b', '#b3e55e', '#f7ffa3', '#dddb6a', ['Green', 'Yellow']), - '5091': ('#f8aa27', '#fac55b', '#fff8b6', '#20655f', ['Orange', 'Yellow', 'Turquoise', 'Summer', 'Gold']), - '5163': ('#f9f3cf', '#ede7cf', '#ddbc89', '#aa512f', ['Yellow', 'Brown']), - '5125': ('#89fad0', '#4ec9e1', '#6796e5', '#228291', ['Turquoise', 'Blue']), - '5124': ('#288fb4', '#1d556f', '#efddb2', '#fa360a', ['Blue', 'Yellow', 'Red']), - '5132': ('#ff6464', '#ffbd67', '#f8fe85', '#5be7a9', ['Red', 'Orange', 'Yellow', 'Green']), - '4343': ('#d9dad7', '#c24d2c', '#3e4a61', '#1a2639', ['Grey', 'Orange', 'Blue', 'Winter']), - '4900': ('#c6f1a2', '#a8d966', '#43a367', '#385380', ['Green', 'Blue']), - '4973': ('#f7f5b2', '#bad4f9', '#5e89ef', '#352771', ['Yellow', 'Purple', 'Blue', 'Blue']), - '4899': ('#6a2e2e', '#cd5a5a', '#ffcf68', '#eff6a5', ['Brown', 'Red', 'Yellow', 'Warm']), - '4901': ('#f46188', '#491d7f', '#642ab6', '#7779ff', ['Pink', 'Purple', 'Purple', 'Blue']), - '4902': ('#489cc1', '#74f6a7', '#43a680', '#236969', ['Blue', 'Green']), - '4910': ('#062925', '#044a42', '#3a9188', '#b8e1dd', ['Green', 'Turquoise', 'Cold']), - '4733': ('#a099ff', '#5a67a6', '#fcb241', '#d68d08', ['Purple', 'Orange']), - '4802': ('#96cd39', '#f5ff65', '#ffba47', '#ff5b44', ['Green', 'Yellow', 'Orange', 'Red', 'Summer', 'Bright']), - '4803': ('#293462', '#211a4c', '#f33535', '#a51c2d', ['Blue', 'Red']), - '4804': ('#243d44', '#167a8b', '#2dea8f', '#24b273', ['Turquoise', 'Green']), - '4281': ('#9a60c1', '#ac92fa', '#96ebf0', '#48c3be', ['Purple', 'Turquoise']), - '4698': ('#563761', '#a7425c', '#f3825f', '#ffe26f', ['Purple', 'Orange', 'Yellow']), - '4464': ('#f2eb80', '#a2bf39', '#2685bf', '#144673', ['Yellow', 'Green', 'Blue']), - '4622': ('#1c0c2a', '#343b99', '#61bdf6', '#9affdc', ['Black', 'Blue', 'Turquoise']), - '4282': ('#8e334c', '#ec9454', '#f1f08a', '#c6cd78', ['Purple', 'Orange', 'Yellow']), - '4461': ('#0c2233', '#065471', '#0a91ab', '#ffc045', ['Black', 'Blue', 'Orange', 'Dark']), - '4581': ('#f7dead', '#cd4439', '#72b896', '#6f7777', ['Yellow', 'Red', 'Green', 'Grey', 'Retro']), - '4515': ('#f7f4ea', '#9ce3cf', '#6a7ff5', '#574b9b', ['Grey', 'Turquoise', 'Blue', 'Wedding', 'Retro']), - '4260': ('#b7569a', '#883c82', '#e4f091', '#f9cd76', ['Purple', 'Purple', 'Yellow', 'Orange']), - '3881': ('#f1efe9', '#beceb0', '#34857f', '#b0a48a', ['Grey', 'Green', 'Brown', 'Turquoise', 'Winter']), - '4535': ('#e0fffb', '#29cdb5', '#008698', '#f39c9c', ['Blue', 'Turquoise', 'Pink']), - '4390': ('#ffb19b', '#f66060', '#9a2c80', '#551863', ['Pink', 'Orange', 'Purple', 'Purple']), - '4337': ('#620808', '#a53f3f', '#f4ce74', '#ffe9c1', ['Brown', 'Brown', 'Yellow', 'Yellow']), - '4285': ('#80ef91', '#4ba54d', '#f3ef82', '#f0c15a', ['Green', 'Green', 'Yellow', 'Orange']), - '4371': ('#f0e9ff', '#cea9ff', '#b346ff', '#545454', ['Purple', 'Purple', 'Grey']), - '4125': ('#302a77', '#5457a6', '#eebb55', '#f1e6d1', ['Blue', 'Blue', 'Orange', 'Yellow']), - '4319': ('#3b939b', '#2f8189', '#91f3fc', '#c9fbff', ['Turquoise', 'Blue']), - '4259': ('#80e5e9', '#7d77f6', '#793e71', '#e471a7', ['Turquoise', 'Blue', 'Purple', 'Pink']), - '4174': ('#ffe180', '#eba059', '#8b3c76', '#41245c', ['Yellow', 'Orange', 'Purple', 'Purple']), - '4176': ('#f0f87f', '#4bc87f', '#29668b', '#6eaff7', ['Yellow', 'Green', 'Blue']), - '4177': ('#85203b', '#cb3b3b', '#e0c45c', '#fff98c', ['Red', 'Yellow']), - '4071': ('#ff5335', '#dfe0d4', '#3e92a3', '#353940', ['Orange', 'Grey', 'Turquoise', 'Black']), - '3287': ('#055049', '#faf35e', '#069a8e', '#a1e3d8', ['Green', 'Yellow', 'Turquoise']), - '4111': ('#000033', '#0066cc', '#0099ff', '#ededed', ['Black', 'Blue', 'Grey']), - '3807': ('#fffbe3', '#ffa9a9', '#6a425c', '#26271a', ['Yellow', 'Pink', 'Purple', 'Brown']), - '3661': ('#1b515e', '#338275', '#88b990', '#abcd9e', ['Green']), - '4038': ('#04879c', '#0c3c78', '#090030', '#f30a49', ['Turquoise', 'Blue', 'Black', 'Red', 'Dark']), - '3907': ('#d14848', '#ec952e', '#f0e449', '#d6f7f8', ['Red', 'Orange', 'Yellow']), - '4057': ('#272e6e', '#ffffc3', '#ffc55c', '#e95d35', ['Blue', 'Yellow', 'Orange', 'Orange']), - '3942': ('#f2f1a7', '#ef5959', '#b43144', '#88a9f7', ['Yellow', 'Red', 'Blue', 'Summer']), - '3890': ('#f1f5bc', '#fecb92', '#f99a9a', '#d1f6a4', ['Yellow', 'Orange', 'Pink', 'Green']), - '3454': ('#335c49', '#678c40', '#bdbe36', '#e5dd90', ['Green', 'Yellow']), - '3943': ('#8aacff', '#6151bb', '#d7f096', '#67ba6d', ['Blue', 'Green']), - '3792': ('#5d697a', '#383838', '#f66b34', '#f2d639', ['Grey', 'Black', 'Orange', 'Yellow']), - '3780': ('#06cdff', '#8200ff', '#470c85', '#18134c', ['Blue', 'Purple', 'Purple', 'Black']), - '3167': ('#824c96', '#433466', '#ffaf4f', '#ed733f', ['Purple', 'Orange']), - '3740': ('#2b3964', '#3482aa', '#6db3b5', '#f9cc7b', ['Blue', 'Turquoise', 'Orange']), - '3781': ('#f4e022', '#5a37c3', '#18224b', '#de1b4a', ['Yellow', 'Purple', 'Black', 'Red']), - '3574': ('#47d0bd', '#daec8b', '#fffdd6', '#ff5da2', ['Turquoise', 'Green', 'Yellow', 'Pink']), - '3459': ('#ccf62c', '#98c74e', '#60a261', '#357a5b', ['Green']), - '3642': ('#f0dca2', '#e0b58c', '#cd7856', '#b5421e', ['Orange', 'Yellow', 'Brown']), - '3604': ('#ff304f', '#002651', '#775ada', '#28c7fa', ['Red', 'Blue', 'Purple']), - '3656': ('#ff6d3f', '#b14b4b', '#594057', '#36162e', ['Orange', 'Red', 'Purple', 'Brown', 'Halloween']), - '3452': ('#4ac3be', '#a3dec9', '#e6efbf', '#faac64', ['Turquoise', 'Orange']), - '3460': ('#eb586f', '#d8e9f0', '#4aa0d5', '#454553', ['Red', 'Blue', 'Blue', 'Grey']), - '3666': ('#ffea66', '#f59159', '#c75080', '#6b206a', ['Yellow', 'Orange', 'Purple']), - '3667': ('#776ae3', '#88e570', '#fbff67', '#ffb44a', ['Purple', 'Green', 'Yellow', 'Orange']), - '3267': ('#d1dbbd', '#91aa9d', '#3e606f', '#193441', ['Turquoise', 'Grey']), - '3590': ('#3d5a59', '#9aebdd', '#367db5', '#313e86', ['Turquoise', 'Blue', 'Blue', 'Blue']), - '3589': ('#ffe390', '#ff926b', '#ff4a4a', '#a83c54', ['Yellow', 'Orange', 'Red']), - '3538': ('#d5441c', '#013c4d', '#9dd5cb', '#f3e5b1', ['Orange', 'Blue', 'Yellow']), - '3530': ('#f7fa86', '#76e7c7', '#9e7eff', '#9c4b9e', ['Yellow', 'Turquoise', 'Purple']), - '3528': ('#0d7685', '#084d68', '#69c181', '#ccf186', ['Turquoise', 'Green']), - '3527': ('#fdf3f3', '#f8e7e7', '#a070a1', '#724060', ['Pink', 'Purple']), - '3328': ('#957541', '#be9639', '#fccf5b', '#dde9eb', ['Brown', 'Yellow', 'Grey', 'Autumn', 'Gold']), - '3435': ('#7c6fff', '#5ca9ff', '#fcff90', '#ffde68', ['Purple', 'Blue', 'Yellow', 'Summer']), - '3449': ('#3b5441', '#83e85a', '#2cb978', '#107a8b', ['Green', 'Green', 'Green', 'Turquoise']), - '3063': ('#c2ffff', '#8bdeff', '#a888ff', '#26466f', ['Blue', 'Purple']), - '3269': ('#fadb3f', '#ecf7c5', '#ea5656', '#27332d', ['Yellow', 'Red', 'Black']), - '2978': ('#bdd8f1', '#82a6cb', '#3667a6', '#214177', ['Blue']), - '3373': ('#d8b5de', '#f9f1bf', '#f3b75b', '#cc7f2a', ['Purple', 'Yellow', 'Orange', 'Gold']), - '3382': ('#ffc7c7', '#dc7646', '#a45c5c', '#6c476e', ['Pink', 'Orange', 'Brown', 'Purple']), - '3383': ('#515661', '#2e9f82', '#68c170', '#d6ec8c', ['Grey', 'Turquoise', 'Green']), - '3177': ('#fdfbda', '#d3d0a8', '#819f7f', '#2d4659', ['Yellow', 'Green']), - '3173': ('#e9e6c9', '#ca6144', '#566683', '#393e51', ['Orange', 'Blue']), - '3324': ('#c24242', '#e08932', '#e5c955', '#f2f5b1', ['Red', 'Orange', 'Yellow', 'Yellow']), - '3059': ('#80ffdb', '#55e0a3', '#5b70f3', '#4850b9', ['Turquoise', 'Green', 'Blue', 'Blue']), - '3060': ('#442b72', '#993d9a', '#8a6bf0', '#fedf96', ['Purple', 'Purple', 'Purple', 'Yellow']), - '3186': ('#d0f66a', '#36c186', '#158a8c', '#1e5287', ['Green', 'Green', 'Turquoise', 'Blue']), - '3213': ('#f7ebc9', '#f2cc96', '#814906', '#d35823', ['Yellow', 'Orange', 'Brown', 'Orange']), - '3062': ('#fba834', '#fce850', '#387adf', '#50c4ed', ['Orange', 'Yellow', 'Blue']), - '3168': ('#a8e0e1', '#5a96bb', '#75448c', '#c46caa', ['Blue', 'Purple']), - '2870': ('#5dacbd', '#24527a', '#a7bcb9', '#e0ebeb', ['Blue', 'Grey']), - '3043': ('#feed30', '#ff6868', '#924992', '#504077', ['Yellow', 'Red', 'Purple', 'Blue']), - '3065': ('#f5eb82', '#dfb361', '#d3775d', '#a75377', ['Yellow', 'Orange', 'Purple']), - '2937': ('#e4e4e4', '#41b3d3', '#61d2dc', '#444444', ['Grey', 'Blue']), - '2982': ('#a62671', '#db466b', '#f96c48', '#f5d773', ['Purple', 'Red', 'Orange', 'Yellow', 'Sunset']), - '3061': ('#1f3a52', '#41a186', '#8cca6e', '#d3f689', ['Turquoise', 'Green']), - '2562': ('#343434', '#055e68', '#62a388', '#b9d2d2', ['Black', 'Turquoise', 'Green', 'Grey', 'Dark']), - '2881': ('#062c80', '#0e6ac7', '#4fb9fc', '#f6f5da', ['Blue', 'Yellow']), - '2655': ('#ff9234', '#ffcd3c', '#fafcb4', '#b0db72', ['Orange', 'Yellow', 'Green', 'Gold']), - '2829': ('#eb2a5d', '#ff6f41', '#ffb44b', '#ffeb7d', ['Red', 'Orange', 'Orange', 'Yellow']), - '2707': ('#fffbb7', '#ffa849', '#68848b', '#4a2b13', ['Yellow', 'Orange', 'Blue', 'Brown']), - '2613': ('#5639a6', '#20236d', '#fa4848', '#ffe087', ['Blue', 'Red', 'Yellow']), - '2715': ('#1a2634', '#203e5f', '#ffcc00', '#fee5b1', ['Black', 'Blue', 'Yellow']), - '2814': ('#740021', '#8d0033', '#bd3246', '#fdc8aa', ['Red', 'Orange']), - '2314': ('#1d0251', '#019081', '#74cc7e', '#d2eba7', ['Purple', 'Turquoise', 'Green']), - '2661': ('#2f2342', '#e42f45', '#b42b3f', '#7ca0e5', ['Black', 'Red', 'Red', 'Blue']), - '2779': ('#4a2377', '#61529f', '#ba69de', '#f3e96d', ['Purple', 'Yellow', 'Wedding']), - '2738': ('#4ac6b7', '#4f5e7f', '#965f8a', '#ff7070', ['Turquoise', 'Blue', 'Purple', 'Orange']), - '2705': ('#ffedc6', '#ffc478', '#fff87d', '#724330', ['Orange', 'Orange', 'Yellow', 'Brown']), - '2485': ('#492b7b', '#301551', '#ed8a0a', '#f7d914', ['Purple', 'Orange', 'Yellow']), - '2555': ('#eadada', '#d59dc5', '#bf5caa', '#4d3a4d', ['Pink', 'Purple', 'Grey', 'Wedding']), - '2759': ('#114b5f', '#1a936f', '#88d498', '#f3e9d2', ['Turquoise', 'Green', 'Yellow']), - '2499': ('#303242', '#394359', '#f2be8d', '#ba6c65', ['Black', 'Red', 'Vintage']), - '2193': ('#483243', '#684184', '#cb73bb', '#f3c2cb', ['Purple', 'Pink']), - '2640': ('#e35454', '#f6fa7b', '#d2d868', '#ac9742', ['Red', 'Yellow', 'Brown']), - '2358': ('#d93153', '#eb5033', '#ff9d00', '#ffd82c', ['Red', 'Orange', 'Orange', 'Yellow']), - '2641': ('#e0f6aa', '#69aeff', '#9d4dff', '#6b3278', ['Green', 'Blue', 'Purple']), - '2487': ('#0e2e3b', '#166678', '#7db9b3', '#d8d7c3', ['Black', 'Blue', 'Turquoise', 'Brown']), - '2512': ('#e8e3c7', '#d4ceb0', '#b85b3f', '#a65238', ['Brown', 'Orange']), - '2389': ('#d2e4f1', '#8facc0', '#818d97', '#484d51', ['Blue', 'Grey']), - '2520': ('#2f1b44', '#892c41', '#c89034', '#fbff5f', ['Purple', 'Red', 'Orange', 'Yellow']), - '2171': ('#f83e4b', '#f7e185', '#cb9bba', '#9d53c3', ['Red', 'Yellow', 'Purple']), - '2130': ('#d2f079', '#c8d35b', '#ad8c45', '#a2663e', ['Green', 'Brown']), - '1895': ('#fadb3f', '#ecf7c5', '#515748', '#27332d', ['Yellow', 'Grey', 'Black']), - '1910': ('#2c2955', '#4c5fb1', '#f9f194', '#cdd582', ['Black', 'Blue', 'Yellow', 'Green']), - '2128': ('#231a31', '#e42f45', '#b42b3f', '#8ab2ff', ['Black', 'Red', 'Red', 'Blue']), - '1907': ('#d6ecfa', '#6f3826', '#b84a39', '#f15c5c', ['Blue', 'Brown', 'Red', 'Wedding']), - '2053': ('#0e153a', '#3d5af1', '#22d1ee', '#e2f3f5', ['Blue', 'Blue', 'Blue']), - '2127': ('#e4ba6f', '#fae88e', '#eb5e60', '#a52f57', ['Orange', 'Yellow', 'Red']), - '1894': ('#83cbfb', '#377fd9', '#edf68d', '#f1d851', ['Blue', 'Yellow']), - '1464': ('#d7df71', '#0e5f76', '#083d56', '#081e3f', ['Yellow', 'Blue', 'Black']), - '1908': ('#4b4c7a', '#eb92fb', '#c855bc', '#a03271', ['Pink', 'Purple']), - '1909': ('#362999', '#4262c5', '#44aec2', '#93efed', ['Purple', 'Blue', 'Turquoise']), - '1914': ('#efbfc6', '#c22828', '#8a0f0f', '#3c0303', ['Pink', 'Red', 'Brown']), - '1805': ('#f7b449', '#dde9f8', '#8293e3', '#5847ad', ['Orange', 'Blue', 'Purple']), - '1652': ('#f5f0e8', '#d3bd9a', '#a28f70', '#674f04', ['Grey', 'Brown']), - '1806': ('#fff56c', '#f1b149', '#4366a9', '#679ceb', ['Yellow', 'Orange', 'Blue']), - '1770': ('#aee1fc', '#60abfb', '#5170fd', '#4636fc', ['Blue']), - '1813': ('#438a70', '#52ceba', '#8affb4', '#eaff81', ['Green', 'Turquoise', 'Turquoise', 'Yellow']), - '1418': ('#e5edc4', '#e1a6e1', '#934662', '#463832', ['Yellow', 'Pink', 'Purple', 'Brown']), - '1649': ('#f0f5f9', '#c9d6df', '#52616b', '#1e2022', ['Grey', 'Black']), - '1660': ('#f6538f', '#b83f87', '#f3e94c', '#e8d124', ['Pink', 'Purple', 'Yellow', 'Yellow']), - '1608': ('#1a2634', '#203e5f', '#eec550', '#f9e3a3', ['Black', 'Blue', 'Yellow']), - '1181': ('#eca106', '#d34f1e', '#91300a', '#5f1b00', ['Orange', 'Brown', 'Gold']), - '1298': ('#3f3f3f', '#95956e', '#d2d86e', '#efefef', ['Grey', 'Green', 'Wedding', 'Retro']), - '1504': ('#48466d', '#3d84a8', '#46cdcf', '#abedd8', ['Turquoise', 'Blue']), - '1319': ('#70560d', '#c3a655', '#efd99b', '#f8edcd', ['Brown', 'Yellow']), - '1303': ('#e7272d', '#ae2a2f', '#fec24a', '#f6e5e4', ['Red', 'Yellow', 'Pink']), - '1037': ('#ffea54', '#ffcb3c', '#feaa2b', '#ff5757', ['Yellow', 'Orange', 'Red', 'Gold']), - '1043': ('#4ec9df', '#63a1d0', '#3576a7', '#344986', ['Blue']), - '643': ('#353941', '#26282b', '#5f85db', '#90b8f8', ['Black', 'Blue', 'Dark']), - '1223': ('#49260a', '#623b1c', '#caad8c', '#f6eddd', ['Brown']), - '839': ('#fbf8ca', '#a13f80', '#5e1043', '#360827', ['Yellow', 'Purple', 'Black', 'Wedding']), - '717': ('#266352', '#128061', '#53c0a2', '#b5f7e6', ['Green']), - '658': ('#611919', '#8e2735', '#deae4f', '#faf189', ['Brown', 'Red', 'Orange', 'Yellow']), - '361': ('#f9ed69', '#f08a5d', '#b83b5e', '#6a2c70', ['Yellow', 'Orange', 'Red', 'Purple']), - '362': ('#225763', '#41d8bf', '#2f89b3', '#3b50b2', ['Blue', 'Turquoise']), - '471': ('#c1f880', '#55c59d', '#4f5aa8', '#7481cf', ['Green', 'Turquoise', 'Blue']), - '470': ('#f75b5b', '#c83b4c', '#46265c', '#794d9a', ['Red', 'Purple']), - '469': ('#1b4b4d', '#f3f66f', '#f1d15f', '#e8984a', ['Yellow', 'Orange']), - '823': ('#561f55', '#df3554', '#902424', '#541f1f', ['Purple', 'Red', 'Red', 'Brown']), - '820': ('#65e892', '#3994d6', '#354abf', '#3d289b', ['Green', 'Blue']), - '255': ('#ef8f6b', '#d36239', '#e2dd66', '#a8b94e', ['Orange', 'Orange', 'Yellow', 'Green']), - '277': ('#e6a157', '#c9753d', '#973a3a', '#5b252d', ['Orange', 'Red', 'Brown', 'Warm']), - '278': ('#33425b', '#5baaec', '#526ed0', '#484cb0', ['Blue', 'Cold', 'Winter']), - '276': ('#fda4cf', '#f46d6d', '#b3533d', '#f0d4a2', ['Pink', 'Orange']), - '274': ('#56bfb5', '#38817a', '#f5f093', '#fbd66f', ['Turquoise', 'Yellow']), - '273': ('#884939', '#967248', '#caa653', '#e9e995', ['Brown', 'Yellow', 'Autumn']), - '272': ('#ff94c7', '#e760bf', '#7e49ac', '#343a69', ['Pink', 'Purple']), - '271': ('#7a81eb', '#504aa7', '#253361', '#599597', ['Purple', 'Blue', 'Blue', 'Turquoise']), - '280': ('#96c99c', '#55829c', '#485791', '#3a316e', ['Green', 'Blue', 'Purple']), - '282': ('#eefca9', '#b7e576', '#83cc61', '#5a9e7c', ['Green', 'Summer']), - '307': ('#693f27', '#e4c144', '#df7943', '#c24b39', ['Brown', 'Yellow', 'Orange']), - '221': ('#b0e6ff', '#7687db', '#8f45a9', '#582e48', ['Blue', 'Blue', 'Purple', 'Purple']), - '222': ('#304d4e', '#4b7551', '#8a9e52', '#f0d699', ['Green', 'Yellow']), - '223': ('#dffcad', '#6ec189', '#595cae', '#424478', ['Green', 'Blue']), - '224': ('#ffd7be', '#95977a', '#3f4c48', '#373640', ['Green']), - '225': ('#b3f7f6', '#7dd076', '#f1f592', '#f4cb81', ['Blue', 'Green', 'Yellow', 'Orange']), - '226': ('#352d4d', '#6d6192', '#69b0c1', '#92e0a9', ['Blue', 'Purple', 'Turquoise', 'Green']), - '227': ('#7a9eaf', '#655989', '#de88a5', '#ffcebb', ['Blue', 'Purple', 'Pink', 'Orange']), - '231': ('#314357', '#456672', '#e3b587', '#c98c70', ['Turquoise', 'Orange', 'Brown', 'Vintage']), - '228': ('#764f51', '#7fc5ca', '#9fe6dc', '#cfffff', ['Brown', 'Turquoise']), - '229': ('#477d7f', '#1f5357', '#64bd97', '#c2ffbb', ['Turquoise', 'Green']), - '230': ('#d19feb', '#fffd9d', '#f7d08c', '#ed8282', ['Purple', 'Yellow', 'Red', 'Bright']), - '232': ('#f6aad0', '#e9767c', '#8f5b4a', '#ddd49f', ['Pink', 'Red', 'Brown']), - '233': ('#a6f2db', '#7bcace', '#678eb4', '#4f4e79', ['Turquoise', 'Blue', 'Blue']), - '234': ('#8cdadb', '#815e94', '#f4f49e', '#f1d089', ['Turquoise', 'Purple', 'Yellow', 'Yellow']), - '236': ('#3b503d', '#4a746e', '#f1edb3', '#c8cf94', ['Green', 'Turquoise', 'Yellow']), - '237': ('#ee8374', '#54567a', '#dab784', '#f8f3b6', ['Orange', 'Blue', 'Yellow', 'Yellow']), - '238': ('#2b2e4a', '#e84545', '#903749', '#53354a', ['Red']), - '240': ('#49493c', '#9fa180', '#f2f77f', '#6ebaa7', ['Brown', 'Brown', 'Yellow', 'Turquoise']), - '241': ('#efd8f4', '#d4abdc', '#ea5656', '#f1e38a', ['Purple', 'Red', 'Yellow']), - '242': ('#ee7c4b', '#c45d3e', '#c6c5b3', '#f5f0c4', ['Orange', 'Orange', 'Brown', 'Yellow', 'Gold']), - '243': ('#b2b7ff', '#d5e8ff', '#d9a2f1', '#d86f9b', ['Blue', 'Purple', 'Pink']), - '244': ('#edf3b7', '#e5c890', '#9268a5', '#644a7f', ['Yellow', 'Orange', 'Purple', 'Purple']), - '248': ('#3d322c', '#654534', '#9c563d', '#d9b26e', ['Brown']), - '246': ('#5f5dbd', '#5e87b8', '#83cee0', '#a4fbe3', ['Blue', 'Blue', 'Turquoise', 'Turquoise']), - '247': ('#804d3b', '#522e24', '#75beda', '#9aedf4', ['Brown', 'Brown', 'Blue']), - '249': ('#dbef98', '#605cb8', '#60c2a4', '#9df0ac', ['Green']), - '250': ('#9a69e1', '#47429d', '#f7b7f3', '#e27393', ['Purple', 'Blue', 'Pink', 'Pink']), - '253': ('#6c95ec', '#3d61ad', '#81e1af', '#41a06f', ['Blue', 'Green']), - '254': ('#d19178', '#a1583e', '#d4c07a', '#f8f7a5', ['Brown', 'Yellow']), - '208': ('#bdf9f7', '#93c4ff', '#b67ccf', '#765a60', ['Blue', 'Purple']), - '187': ('#1d1716', '#402a23', '#a55233', '#f3bc77', ['Black', 'Brown', 'Brown', 'Orange']), - '188': ('#fa8572', '#b24968', '#6c3779', '#6c5fa7', ['Orange', 'Purple', 'Purple']), - '189': ('#f7ec77', '#da5151', '#ed9f66', '#876464', ['Yellow', 'Red', 'Orange', 'Brown']), - '190': ('#48829e', '#51dacf', '#9ef5cf', '#e8ffb1', ['Blue', 'Turquoise', 'Yellow']), - '191': ('#d5ab9c', '#e6e696', '#7bc0a3', '#54878f', ['Brown', 'Yellow', 'Green', 'Turquoise', 'Pastel']), - '192': ('#e2eff1', '#b6d5e1', '#65799b', '#555273', ['Blue']), - '193': ('#ffe76a', '#e0ab5b', '#94784c', '#6e4c41', ['Yellow', 'Orange', 'Brown', 'Gold']), - '194': ('#333a7b', '#4b6982', '#70c6c7', '#b4ffd8', ['Blue', 'Blue', 'Turquoise', 'Green']), - '195': ('#e5f1e3', '#a3cd9e', '#529471', '#35635b', ['Green']), - '196': ('#3e3245', '#524a79', '#97d8ec', '#74bbca', ['Black', 'Turquoise', 'Blue']), - '198': ('#8fc9ae', '#548e87', '#385b66', '#bddaa5', ['Green']), - '202': ('#98d8ff', '#796dce', '#694b7c', '#402a30', ['Blue', 'Blue', 'Purple', 'Purple']), - '203': ('#9effa9', '#36485e', '#333146', '#29252c', ['Green', 'Blue', 'Black']), - '204': ('#f7ffba', '#f7e39c', '#ebaf81', '#da8067', ['Yellow', 'Orange']), - '205': ('#36413d', '#4c657e', '#f29696', '#ffe2ad', ['Black', 'Blue', 'Pink', 'Yellow']), - '206': ('#c1e8da', '#c96868', '#5e4949', '#866770', ['Turquoise', 'Red', 'Grey', 'Brown']), - '209': ('#d4a2be', '#75597d', '#b0b8b4', '#f8e4dd', ['Pink', 'Purple', 'Grey']), - '211': ('#364968', '#fddf97', '#e09664', '#6c4343', ['Blue', 'Yellow', 'Orange', 'Brown']), - '212': ('#ffebbc', '#5da7ae', '#543d46', '#292830', ['Yellow', 'Blue', 'Brown', 'Black']), - '213': ('#ebbf58', '#769353', '#3d655d', '#33484d', ['Orange', 'Green', 'Turquoise', 'Blue']), - '215': ('#4531b1', '#a836ad', '#f16896', '#fff0a4', ['Blue', 'Purple', 'Pink', 'Yellow']), - '216': ('#d15555', '#eda489', '#e8fd96', '#a1d76f', ['Red', 'Pink', 'Yellow', 'Green']), - '217': ('#a45fbe', '#382f60', '#485188', '#4b81ab', ['Purple', 'Blue']), - '218': ('#567582', '#464d5c', '#f7dda4', '#b89068', ['Turquoise', 'Yellow', 'Brown']), - '219': ('#3e6545', '#9973e2', '#82ceda', '#ecffb1', ['Green', 'Purple', 'Blue', 'Yellow']), - '220': ('#bbe06c', '#7cb855', '#469b4c', '#3c6e57', ['Green', 'Green', 'Green', 'Green']), - '185': ('#2a221e', '#46322b', '#c73f65', '#d580bc', ['Brown', 'Pink']), - '180': ('#686ee2', '#5c3e84', '#f35c6e', '#ffa87b', ['Blue', 'Purple', 'Red', 'Orange']), - '181': ('#abf2fb', '#b589ef', '#a964cd', '#f1a3c5', ['Blue', 'Purple', 'Pink']), - '182': ('#ffff8f', '#ec9e69', '#d56073', '#7a4579', ['Yellow', 'Orange', 'Red', 'Purple', 'Sunset', 'Wedding']), - '129': ('#f39de5', '#9b77da', '#4e6b9f', '#6fa5b1', ['Pink', 'Purple', 'Blue', 'Blue']), - '130': ('#516091', '#74bec1', '#adebbe', '#eef3ad', ['Blue', 'Turquoise', 'Green', 'Yellow', 'Pastel']), - '133': ('#ebd9dd', '#d8aed3', '#9182c4', '#486989', ['Pink', 'Purple', 'Blue']), - '134': ('#8be3e1', '#d3f7ad', '#95bb76', '#97935c', ['Blue', 'Green', 'Brown']), - '136': ('#734444', '#c37857', '#eeedbe', '#99b27f', ['Brown', 'Green']), - '137': ('#4c5f7a', '#393e6f', '#3d2e4f', '#321d2f', ['Blue', 'Black', 'Purple', 'Dark']), - '139': ('#e1dfba', '#7f7e90', '#4d424d', '#36292c', ['Grey']), - '140': ('#b1e9a3', '#7ac38f', '#88e0d0', '#c7eeff', ['Green', 'Green', 'Turquoise', 'Blue']), - '141': ('#e97a7a', '#8b4f80', '#8b76a5', '#b9c0d5', ['Red', 'Purple', 'Grey', 'Pastel']), - '146': ('#e04b5a', '#e49756', '#5b305a', '#9a4c68', ['Red', 'Orange', 'Purple', 'Purple']), - '152': ('#f2fc9f', '#edbb91', '#da6969', '#b05977', ['Yellow', 'Orange', 'Red']), - '155': ('#8ecccc', '#50717b', '#3a4042', '#212121', ['Blue', 'Grey', 'Black']), - '156': ('#e6f18c', '#72b37e', '#437975', '#555c78', ['Yellow', 'Green']), - '157': ('#7fcbd7', '#857ebb', '#ca9dd7', '#facbd3', ['Blue', 'Purple', 'Pink']), - '158': ('#d789d7', '#9d65c9', '#5d54a4', '#2a3d66', ['Pink', 'Purple']), - '159': ('#f7c469', '#c46352', '#714433', '#412525', ['Orange', 'Brown', 'Autumn']), - '160': ('#9ae17b', '#6bba62', '#307470', '#42476d', ['Green', 'Green', 'Purple']), - '161': ('#634258', '#6d6087', '#60a0b0', '#9ad1aa', ['Purple', 'Blue', 'Green']), - '162': ('#f1f4c6', '#d6d0b8', '#aaa6a4', '#837d7d', ['Yellow', 'Brown', 'Grey']), - '165': ('#f96d6d', '#b84d69', '#a9d7f6', '#8fb1e9', ['Red', 'Blue']), - '171': ('#d68438', '#f1b24b', '#36846b', '#4bb39a', ['Orange', 'Turquoise', 'Gold']), - '174': ('#639cd9', '#5454c5', '#342056', '#220e24', ['Blue', 'Purple', 'Black', 'Dark']), - '177': ('#7dd87d', '#4c9173', '#5b446a', '#906387', ['Green', 'Green', 'Purple']), -} \ No newline at end of file diff --git a/ThemeMaker/readme.md b/ThemeMaker/readme.md deleted file mode 100644 index 46a7e074..00000000 --- a/ThemeMaker/readme.md +++ /dev/null @@ -1,172 +0,0 @@ -# Theme Maker - -## A Tool To Make PySimpleGUI "Look and Feel" Entries - -The Look and Feel themes are defined using a dictionary. Each theme has a dictionary of colors and other settings such as the color for the text, background, input fields, buttons, etc. Generating these themes has been a tedious and long process in the past. This tool was created to make that process easier, more enjoyable, and perhaps something users could participate in. - -This program uses over 1,700 color palettes that were downloaded from https://colorhunt.co/palettes and put into a python file as a dictionary. You'll find the dictionary in `color_themes.py`. - -Here is how the dictionary looks when shortened to 3 entires: - -```python -themes = { - '163372': ('#f4efd3', '#cccccc', '#c2b0c9', '#9656a1', ['Yellow', 'Grey', 'Purple', 'Pastel']), - '163318': ('#594a4e', '#e78fb3', '#ffc0ad', '#6fc1a5', ['Brown', 'Pink', 'Green', 'Vintage']), - '163537': ('#ff8ba7', '#ffc6c7', '#faeee7', '#c3f0ca', ['Pink', 'Green', 'Bright', 'Summer']) } -``` - -## What It Does - -Each palette, a group of 4 colors, is used to present a small "candidate theme layout". A single "candidate" looks like this: - -![SNAG-0587](https://user-images.githubusercontent.com/46163555/69909821-c820b980-13ce-11ea-95fb-03460e7d3873.jpg) - -For each palette you will be presented with 4 of those layouts. Two are "Dark" and two are "Light". You can choose options in each of these layouts and choose to save it. - -The program generates text in a debug window and also appends the text to an output file. This text can be used directly in a look and feel table. - - -## Installing - -There is no installation if you already have PySimpleGUI installed. Simply download the 2 .py files in this folder and run the one named Theme_Maker.py - -## Running - Initial Window - -The first window you're presented with collects information from you regarding how you would like the theme generation window to be laid out and where to start in the palette dictionary. - -![SNAG-0584](https://user-images.githubusercontent.com/46163555/69909830-0322ed00-13cf-11ea-88da-999d6e901002.jpg) - - - - -![SNAG-0586](https://user-images.githubusercontent.com/46163555/69909820-c820b980-13ce-11ea-94db-0e36af813e25.jpg) - - - - -Program that is used to create new themes for use with PySimpleGUI's "Look and Feel" settings. -You are presented with a grid of mini-windows that is created for color palettes downloaded from https://colorhunt.co/palettes -The file color_themes.py contains a large dictionary of approx 1780 palettes. - -For each palette you are shown 4 candidate themes, 2 "light" and 2 "dark". The window shows 5 palettes so you'll have a -total of 20 candidate themes displayed in total. -Each candidate theme has a 3 options - The button color (text and background), the text color for Input/Multiline elements, -and the name of the theme when you save it. These you choose using the radio buttons and one input field. -To "save" one of these candidate themes, check the checkbox to the left of the layout, choose the radio buttons for button -& text settings and optionally change the theme name that is shown above the grid of OK buttons. By default the name starts -with either "Dark" or "Light" and is followed by the first 2 "tags" that were posted with the palette on the colorhunt site. - -After you've selected the themes you want to save from the window of 20 click any "OK" button in the window or close the -window with the "X". You will see the dictionary text in the Debug Window and the values will also be written to a file. -You'll then be shown the next group of 20 candidate themes. - -If you want to exit the program entirely, click any "Cancel" button the page. Note - cliicking "Cancel" will not save any -theme you have checked with the checkbox. You should only exit from a window you have not selected any themes for saving - -If a Theme is selected for saving, then the values for the LOOK_AND_FEEL dictionary are displayed in a debug window and are -also appended to the file new_theme_dict.py. You will need to edit the new_theme_dict.py file to get the syntax correct. -A "," or "}" may need to be added in order to make the table be correct. - -If you're using this program it's assumed you know what you're doing and understand the LOOK_AND_FEEL dictionary and can -figure out how to get the syntax correct for adding it to the main dictionary of themes. - -## Choosing and Saving New Themes - -Let's say you were working with these candidate themes: - -![SNAG-0556](https://user-images.githubusercontent.com/46163555/70284016-94f47680-1790-11ea-9e08-1fe7804eaf1a.jpg) - - -You like the first 2 themes on the second row, so you - -* Mark the checkbox next to each of those 2 themes -* Click the 2 radio buttons indicating choice for input text choice and button color -* Enter a name to be used for the theme -* Click OK anywhere on the screen - -Here is how my choices appear for those 2 entries: - -![SNAG-0577](https://user-images.githubusercontent.com/46163555/70284014-94f47680-1790-11ea-9373-28f80c8a4d31.jpg) - -The result will be that a debug window will open and display the text for the 2 new theme entries for the look and feel theme dictionary. - -![SNAG-0578](https://user-images.githubusercontent.com/46163555/70284013-94f47680-1790-11ea-8be8-507ed929c867.jpg) - -Similar text will be appended to the end of the file "new_theme_dict.py". - - -## Integrating the New Themes - -Now that you've got the text for the themes it's time to integrate it into your PySimpleGUI environment. The way you do this is that you add your themes direcvtly to the look and feel dictionary. - -Begin by copying the text from either the .py file or the debug window: - -```python -'DarkGreenArmy' : {'BACKGROUND': '#3b503d', 'TEXT': '#f1edb3', 'INPUT': '#c8cf94', 'TEXT_INPUT': '#000000', 'SCROLL': '#c8cf94', 'BUTTON': ('#f1edb3', '#3b503d'), 'PROGRESS': ('#01826B', '#D0D0D0'), 'BORDER': 1, 'SLIDER_DEPTH': 0, 'PROGRESS_DEPTH': 0, 'COLOR_LIST': ['#3b503d', '#4a746e', '#c8cf94', '#f1edb3'], 'DESCRIPTION': ['Green', 'Turquoise', 'Yellow']} - -'LightGreenArmy' : {'BACKGROUND': '#f1edb3', 'TEXT': '#3b503d', 'INPUT': '#4a746e', 'TEXT_INPUT': '#f1edb3', 'SCROLL': '#3b503d', 'BUTTON': ('#f1edb3', '#3b503d'), 'PROGRESS': ('#01826B', '#D0D0D0'), 'BORDER': 1, 'SLIDER_DEPTH': 0, 'PROGRESS_DEPTH': 0, 'COLOR_LIST': ['#3b503d', '#4a746e', '#c8cf94', '#f1edb3'], 'DESCRIPTION': ['Green', 'Turquoise', 'Yellow']} -``` - -This code is written as if you were going to directly add the code inside the PySimpleGUI.py file itself. Instead you'll be adding them directly from your user code rather than modifying the PySimpleGUI.py file. - -Adding the entries to the table can be accomplished using simple assignment to a new dictionary entry. The look and feel dictionary in PySimpleGUI is named `sg.LOOK_AND_FEEL_TABLE`. Here is a sample user program that adds these 2 new themes to the table and then uses one of them to display a window and another to display a popup. - - -```python -import PySimpleGUI as sg - -sg.LOOK_AND_FEEL_TABLE['DarkGreenArmy'] = {'BACKGROUND': '#3b503d', 'TEXT': '#f1edb3', 'INPUT': '#c8cf94', 'TEXT_INPUT': '#000000', 'SCROLL': '#c8cf94', - 'BUTTON': ('#f1edb3', '#3b503d'), 'PROGRESS': ('#01826B', '#D0D0D0'), 'BORDER': 1, 'SLIDER_DEPTH': 0, 'PROGRESS_DEPTH': 0, - 'COLOR_LIST': ['#3b503d', '#4a746e', '#c8cf94', '#f1edb3'], 'DESCRIPTION': ['Green', 'Turquoise', 'Yellow']} - -sg.LOOK_AND_FEEL_TABLE['LightGreenArmy'] = {'BACKGROUND': '#f1edb3', 'TEXT': '#3b503d', 'INPUT': '#4a746e', 'TEXT_INPUT': '#f1edb3', 'SCROLL': '#3b503d', - 'BUTTON': ('#f1edb3', '#3b503d'), 'PROGRESS': ('#01826B', '#D0D0D0'), 'BORDER': 1, 'SLIDER_DEPTH': 0, 'PROGRESS_DEPTH': 0, - 'COLOR_LIST': ['#3b503d', '#4a746e', '#c8cf94', '#f1edb3'], 'DESCRIPTION': ['Green', 'Turquoise', 'Yellow']} - -sg.change_look_and_feel('Dark Green Army') - - -layout = [ [sg.Text('My Window')], - [sg.Input(key='-IN-')], - [sg.Button('Popup'), sg.Button('Exit')] ] - -window = sg.Window('Window Title', layout) - -while True: # Event Loop - event, values = window.read() - print(event, values) - if event in (None, 'Exit'): - break - if event == 'Popup': - sg.ChangeLookAndFeel('Light Green Army') - sg.popup('This popup is using a new "Light Green Army" look and feel theme') -window.close() -``` - -## Displaying the New Themes - -When the above program is executed, you are first prsented with a window that's created using the new "DarkGreenArmy" theme. Notice that you can use the "fuzzy theme matching" to make your code more readable by referencing to the theme as "Dark Green Army" when calling `change_look_and_feel` - -![image](https://user-images.githubusercontent.com/46163555/70284546-59f34280-1792-11ea-9a4a-d3aeeb121381.png) - -Clicking the popup causes the light look and feel theme to be loaded prior to calling `popup` to display a window. This will cause the popup to use the light theme and creates this window: - -![image](https://user-images.githubusercontent.com/46163555/70284679-da19a800-1792-11ea-9701-88989cc93ae2.png) - -## Go Make The World More Colorful!! - -Now that you've created some of your very own Look and Feel themes, go use them to create some nice looking windows! **Anything** is better than a default gray window. - - - -# Author - -The PySimpleGUI Organization - - - -# License - -Copyright 2019 PySimpleGUI.org - - GNU Lesser General Public License (LGPL 3) + diff --git a/YoloObjectDetection/Readme.md b/YoloObjectDetection/Readme.md deleted file mode 100644 index 6c7e9c43..00000000 --- a/YoloObjectDetection/Readme.md +++ /dev/null @@ -1,6 +0,0 @@ - -# PySimpleGUI openCV YOLO Deep Learning - -To save room in the PySimpleGUI Repo, this project has been moved to its own repo on GitHub - -You'll now find the project at: https://github.com/PySimpleGUI/PySimpleGUI-YOLO diff --git a/exemaker/pysimplegui-exemaker/__init__.py b/exemaker/pysimplegui-exemaker/__init__.py deleted file mode 100644 index b2af88f0..00000000 --- a/exemaker/pysimplegui-exemaker/__init__.py +++ /dev/null @@ -1 +0,0 @@ -name = "pysimplegui-exemaker" diff --git a/exemaker/pysimplegui-exemaker/pysimplegui-exemaker.py b/exemaker/pysimplegui-exemaker/pysimplegui-exemaker.py deleted file mode 100644 index 9e02bc74..00000000 --- a/exemaker/pysimplegui-exemaker/pysimplegui-exemaker.py +++ /dev/null @@ -1,84 +0,0 @@ -import PySimpleGUI as sg -import subprocess -import shutil -import os -import sys -''' - Make a "Windows os" executable with PyInstaller -''' - -def main(): - sg.theme('LightGreen') - - layout = [[sg.Text('PyInstaller EXE Creator', font='Any 15')], - [sg.Text('Source Python File'), sg.Input(key='-sourcefile-', size=(45, 1)), - sg.FileBrowse(file_types=(("Python Files", "*.py"),))], - [sg.Text('Icon File'), sg.Input(key='-iconfile-', size=(45, 1)), - sg.FileBrowse(file_types=(("Icon Files", "*.ico"),))], - [sg.Frame('Output', font='Any 15', layout=[ - [sg.Output(size=(65, 15), font='Courier 10')]])], - [sg.Button('Make EXE', bind_return_key=True), - sg.Button('Quit', button_color=('white', 'firebrick3')) ], - [sg.Text('Made with PySimpleGUI (www.PySimpleGUI.org)', auto_size_text=True, font='Courier 8')]] - - window = sg.Window('PySimpleGUI EXE Maker', layout, auto_size_text=False, auto_size_buttons=False, default_element_size=(20,1), text_justification='right') - # ---===--- Loop taking in user input --- # - while True: - - event, values = window.read() - if event in ('Exit', 'Quit', None): - break - - source_file = values['-sourcefile-'] - icon_file = values['-iconfile-'] - - icon_option = '-i "{}"'.format(icon_file) if icon_file else '' - source_path, source_filename = os.path.split(source_file) - workpath_option = '--workpath "{}"'.format(source_path) - dispath_option = '--distpath "{}"'.format(source_path) - specpath_option = '--specpath "{}"'.format(source_path) - folder_to_remove = os.path.join(source_path, source_filename[:-3]) - file_to_remove = os.path.join(source_path, source_filename[:-3]+'.spec') - command_line = 'pyinstaller -wF --clean "{}" {} {} {} {}'.format(source_file, icon_option, workpath_option, dispath_option, specpath_option) - - if event == 'Make EXE': - try: - print(command_line) - print('Making EXE...the program has NOT locked up...') - window.refresh() - # print('Running command {}'.format(command_line)) - out, err = runCommand(command_line, window=window) - shutil.rmtree(folder_to_remove) - os.remove(file_to_remove) - print('**** DONE ****') - except: - sg.PopupError('Something went wrong', 'close this window and copy command line from text printed out in main window','Here is the output from the run', out) - print('Copy and paste this line into the command prompt to manually run PyInstaller:\n\n', command_line) - - -def runCommand(cmd, timeout=None, window=None): - """ run shell command - - @param cmd: command to execute - @param timeout: timeout for command execution - - @return: (return code from command, command output) - """ - - p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - output = '' - for line in p.stdout: - line = line.decode(errors='replace' if (sys.version_info) < (3, 5) - else 'backslashreplace').rstrip() - output += line - print(line) - if window: - window.Refresh() - - retval = p.wait(timeout) - - return (retval, output) - - -if __name__ == '__main__': - main() diff --git a/exemaker/readme.md b/exemaker/readme.md deleted file mode 100644 index 89399bda..00000000 --- a/exemaker/readme.md +++ /dev/null @@ -1,25 +0,0 @@ -# PySimpleGUI-exemaker - -## Introduction -This package contains a GUI front-end to PyInstaller. Use this tool to create EXE files from your python programs - - ![snag-0086](https://user-images.githubusercontent.com/13696193/46968655-c2103200-d081-11e8-926f-d5f977e726f3.jpg) - - -## Installing - -When you install PySimpleGUI-exemaker, it will install the other components that it requires. To install, on windows, type this into a command prompt: - - pip install pysimplegui-exemaker - - -## PySimpleGUI Project - -This program was built as a sample application of the PySimpleGUI GUI Framework. - - -## Running the program - -After your pip install, type this into your command prompt: - - python -m pysimplegui-exemaker.pysimplegui-exemaker diff --git a/exemaker/setup.py b/exemaker/setup.py deleted file mode 100644 index 128ba418..00000000 --- a/exemaker/setup.py +++ /dev/null @@ -1,27 +0,0 @@ -import setuptools - -with open("README.md", "r") as fh: - long_description = fh.read() - -setuptools.setup( - name="pysimplegui-exemaker", - version="1.0.0", - author="PySimpleGUI.org", - author_email="info@PySimpleGUI.org", - description="A GUI Front-end to PyInstaller", - long_description=long_description, - long_description_content_type="text/markdown", - install_requires=['PyInstaller', 'pysimplegui'], - url="https://github.com/MikeTheWatchGuy/PySimpleGUI", - packages=setuptools.find_packages(), - classifiers=[ - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "License :: OSI Approved :: MIT License", - "Operating System :: Microsoft :: Windows ", - ], -) \ No newline at end of file diff --git a/mkdocs_ivory/404.html b/mkdocs_ivory/404.html deleted file mode 100644 index 0d48cf73..00000000 --- a/mkdocs_ivory/404.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -

404

-

Page not found

-{% endblock %} \ No newline at end of file diff --git a/mkdocs_ivory/__init__.py b/mkdocs_ivory/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/mkdocs_ivory/base.html b/mkdocs_ivory/base.html deleted file mode 100644 index a96493e9..00000000 --- a/mkdocs_ivory/base.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - {%- block site_meta %} - - - - {%- if page and page.is_homepage %} - {% endif %} - {%- if config.site_author %} - {% endif %} - {%- if config.site_favicon %} - - {%- else %} - {% endif %} - {%- endblock %} - - {%- block htmltitle %} - {% if page and page.title and not page.is_hompage %}{{ page.title|striptags }} — {% endif %}{{ config.site_name }} - {%- endblock %} - - {%- block styles %} - - - - - - {%- if config.theme.highlightjs %} - - {%- endif %} - {%- for path in config['extra_css'] %} - - {%- endfor %} - {%- endblock %} - - {%- block libs %} - - {%- if config.theme.highlightjs %} - - {%- for lang in config.theme.hljs_languages %} - - {%- endfor %} - - {%- endif %} - {%- endblock %} - - {%- block extrahead %} {% endblock %} - - - -
- -
-
- -
- - {% block content %}
{{ page.content }}
{% endblock %} - {% block footer %}{% include "footer.html" %}{% endblock %} -
-
-
- {%- block scripts %} - - - {%- for path in config['extra_javascript'] %} - {% endfor %} - {%- endblock %} - - - diff --git a/mkdocs_ivory/breadcrumbs.html b/mkdocs_ivory/breadcrumbs.html deleted file mode 100644 index c1f1a7f5..00000000 --- a/mkdocs_ivory/breadcrumbs.html +++ /dev/null @@ -1,12 +0,0 @@ -{% if page %} - -{% endif %} \ No newline at end of file diff --git a/mkdocs_ivory/css/theme.css b/mkdocs_ivory/css/theme.css deleted file mode 100644 index 7f47fc9a..00000000 --- a/mkdocs_ivory/css/theme.css +++ /dev/null @@ -1,657 +0,0 @@ -html { - font-size: 16px; -} - -*, *::before, *::after { - box-sizing: border-box; -} - -body, button { - font-family: Lato, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; -} - -body { - margin: 0; -} - -code { - font-family: "Fira Code", "Courier New", Consolas, monospace; - font-size: 0.83rem; - color: #7700FF; - border: 1px solid #E0E0E0; - border-radius: 3px; - padding: 1px 4px; - margin: 0px 1px; - background: white; -} - -pre code { - font-size: 0.8rem; -} - -p { - line-height: 1.65rem; -} - -main ul { - margin-top: 0px; - margin-bottom: 8px; -} - -main li { - margin-top: 4px; - margin-bottom: 4px; - line-height: 1.5; -} - -pre { - line-height: 1.6; -} - -a { - color: #39f; - text-decoration: none; -} - -button { - font-size: 1rem; - cursor: pointer; - border: none; - background: transparent; - outline: none; -} - -img { - width: 100%; - max-width: 100%; - height: auto; -} - -/* ul, ol, dl { - margin: 0; - padding: 0; - list-style: none; - list-style-image: none; -} */ - -.nav ul, -.breadcrumbs ul { - padding: 0px; - list-style-type: none; -} - -.site-name { - display: inline-block; - color: #ddd; - font-weight: bold; -} - -.site-name::before { - font-family: "Font Awesome 5 Free"; - content: "\f015"; -} - -.nav-item { - display: block; - position: relative; - font-size: 0.95rem; - line-height: 1.1; - padding-top: 5px; - padding-bottom: 5px; - padding-right: 5px; -} - -.nav-item.section { - color: #ddd; - width: 100%; - text-align: left; -} - -.nav-item.section:hover { - background: #999; - color: #333; -} - -a.nav-item { - color: #999; -} - -a.nav-item.current { - color: #333; - background: #eee; -} - -a.nav-item.current:hover { - color: #333; - background: #bbb; -} - -a.nav-item:hover { - background: #666; -} - -.subnav.hide { - display: none; -} - -.nav-item.section::before { - position: absolute; - text-align: center; - width: 5px; -} - -.nav-item.section::before { - font-family: "Font Awesome 5 Free"; - font-weight: bold; - content: "\f107"; -} - -.nav-item.section.hide::before { - content: "\f105"; -} - -.toctree-l1>.nav-item.section { - padding-left: 25px; -} - -.toctree-l1>a.nav-item { - padding-left: 25px; -} - -.toctree-l1>.nav-item.section::before { - left: 10px; -} - -.toctree-l2>.nav-item.section { - padding-left: 35px; -} - -.toctree-l2>a.nav-item { - padding-left: 25px; -} - -.toctree-l2>.nav-item.section::before { - left: 20px; -} - -.toctree-l3>.nav-item.section { - padding-left: 45px; -} - -.toctree-l3>a.nav-item { - padding-left: 35px; -} - -.toctree-l3>.nav-item.section::before { - left: 30px; -} - -.toctree-l4>.nav-item.section { - padding-left: 55px; -} - -.toctree-l4>a.nav-item { - padding-left: 45px; -} - -.toctree-l4>.nav-item.section::before { - left: 40px; -} - -.toctree-l5>.nav-item.section { - padding-left: 65px; -} - -.toctree-l5>a.nav-item { - padding-left: 55px; -} - -.toctree-l5>.nav-item.section::before { - left: 50px; -} - -.toctree-l6>.nav-item.section { - padding-left: 75px; -} - -.toctree-l6>a.nav-item { - padding-left: 65px; -} - -.toctree-l6>.nav-item.section::before { - left: 45px; -} - -.nav-item.toc { - background: #ccc; - color: #555; - border: none; -} - -.nav-item.toc:hover { - background: #bbb; - color: #555; - border: none; -} - -.repo div { - padding: 0 10px; -} - -.repo div:first-child { - margin-right: auto; -} - -.repo a { - color: #ddd; - font-size: 0.9rem; -} - -.breadcrumbs li { - font-size: 0.9rem; - display: inline; -} - -.footer-buttons { - position: relative; - height: 2.5rem; -} - -.footer-buttons .previous { - position: absolute; - left: 0; - margin: auto; -} - -.footer-buttons .next { - position: absolute; - right: 0; -} - -.footer-buttons a { - display: inline-block; - color: #444; - background: #eee; - padding: 4px 8px; - border: 1px solid #ccc; - font-size: 14px; -} - -.footer-buttons span::after, -.footer-buttons span::before { - font-family: "Font Awesome 5 Free"; - font-weight: bold; -} - -.footer-buttons .previous span::before { - margin-right: 6px; - content: "\f359"; -} - -.footer-buttons .next span::after { - margin-left: 6px; - content: "\f35a"; -} - -.footer-note { - display: flex; - font-size: 0.9rem; - color: #aaa; - height: 40px; - border-top: 1px solid #ccc; - align-items: center; - justify-content: center; -} - -.footer-note a { - color: #88d; -} - -/**************************************/ -/* layout */ -/**************************************/ -#container { - display: flex; -} - -aside { - flex: 0 0 300px; - width: 300px; - order: 1; - background: #333; - z-index: 999; -} - -aside>* { - width: inherit; -} - -.home, .home-top { - display: flex; - background: #48c; - flex-direction: column; - align-items: center; - justify-content: center; -} - -.home { - position: fixed; - top: 0; -} - -.home .search input { - display: inline-block; - border-radius: 40px; - padding: 4px 10px; - outline: none; - width: 250px; - border: 1px solid #999; -} - -.nav { - position: fixed; - overflow-y: auto; - background: #333; -} - -.repo { - display: flex; - background: #222; - position: fixed; - bottom: 0; - height: 40px; - align-items: center; -} - -#spacer { - flex: 0 0 22px; - order: 2; -} - -main { - flex: 1 1 300px; - order: 3; - min-width: 0; - overflow: hidden; -} - -@media screen and (max-width: 768px) { - html.show { - overflow-y: hidden; - } - - aside { - display: none; - } - - aside.show { - display: block; - flex: 0 0 100%; - width: 100%; - } - - .home, .home-top { - height: 40px; - } - - .home-top { - position: relative; - } - - .home .version, - .home .search { - display: none; - } - - .hamburger { - position: absolute; - right: 15px; - } - - .hamburger::before { - font-family: "Font Awesome 5 Free"; - content: "\f0c9"; - font-weight: bold; - color: #ddd; - font-size: 1.3rem; - } - - .nav { - top: 40px; - height: calc(100% - 80px); - } - - .site-name.hide { - display: none; - } - - #spacer { - display: none; - } - - #main { - margin: 10px 15px; - } - - .footer-note { - display: none; - } - - h1 { - font-size: 1.45rem; - } - - h2 { - font-size: 1.3rem; - } - - h3 { - font-size: 1.2rem; - } - - h4 { - font-size: 1.15rem; - } - - h5 { - font-size: 1.1rem; - } - - h6 { - font-size: 1.0rem; - } -} - -@media screen and (min-width: 768px) { - .home-top { - display: none; - } - - .home { - height: 100px; - } - - .home .title { - margin-top: 5px; - margin-bottom: 2px; - } - - .home .version { - margin-bottom: 2px; - color: #aaa; - } - - .nav { - top: 100px; - height: calc(100% - 140px); - } - - #main { - margin: 10px 50px 10px 30px; - } - - .hamburger { - display: none; - } - - .arrow { - position: fixed; - top: calc(50% - 23px); - bottom: calc(50% - 23px); - border: 1px solid #eee; - border-radius: 0px 14px 14px 0px; - padding-left: 3px; - padding-right: 6px; - margin-left: -10px; - transition: 0.3s ease 0s; - } - - .arrow::before { - font-family: "Font Awesome 5 Free"; - content: "\f053"; - font-weight: bold; - color: #fff; - font-size: 1rem; - } - - .arrow.hide::before { - content: "\f054"; - } - - .arrow:hover { - background: #555; - color: #ddd; - border-color: #555; - margin-left: 0px; - } - - aside.hide { - display: none; - } - - h1 { - font-size: 1.65rem; - } - - h2 { - font-size: 1.5rem; - } - - h3 { - font-size: 1.25rem; - } - - h4 { - font-size: 1.2rem; - } - - h5 { - font-size: 1.1rem; - } - - h6 { - font-size: 1.0rem; - } -} - -/************************************************** - Table style -**************************************************/ -table { - border-collapse: collapse; - font-size: 0.9rem; - margin: auto; -} - -th, td { - text-align: center; - padding: 2px 4px; -} - -th { - color: darkblue; - background: #eee; - border: 1px solid #333; -} - -td { - color: black; - border: 1px solid #b9b9b9; -} - -tr th:first-child, tr td:first-child { - border-left: 1px solid #333366; -} - -tr th:last-child, tr td:last-child { - border-right: 1px solid #333366; -} - -tr:first-child td, tr:first-child th { - border-top: 1px solid #333366; -} - -tr:last-child td, tr:last-child th { - border-bottom: 1px solid #333366; -} - -tbody tr:nth-child(2n+1) td { - background: #fafafa; -} - -.admonition { - margin-top: 20px; - margin-bottom: 20px; - padding: 0px; - padding-bottom: 10px; -} - -.admonition.note { - background: #F0F0FF; -} - -.note p.admonition-title { - color: white; - background: #555599; - margin: 0px; - padding: 4px 8px; -} - -.note p.admonition-title:before { - font-family: "Font Awesome 5 Free"; - content: "\f303"; - font-weight: 900; - padding-right: 5px; - color: white; -} - -.admonition.warning { - background: #FFEEEE; -} - -.warning p.admonition-title { - color: white; - background: #FF6666; - margin: 0px; - padding: 4px 8px; -} - -.warning p.admonition-title:before { - font-family: "Font Awesome 5 Free"; - content: "\f071"; - font-weight: 900; - padding-right: 5px; - color: white; -} - -.admonition p { - margin-top: 5px; - margin-left: 10px; - margin-bottom: 5px; - padding: 4px; -} - -.admonition pre { - margin-top: 5px; - margin-left: 15px; -} diff --git a/mkdocs_ivory/footer.html b/mkdocs_ivory/footer.html deleted file mode 100644 index 7b2a4bfb..00000000 --- a/mkdocs_ivory/footer.html +++ /dev/null @@ -1,20 +0,0 @@ - diff --git a/mkdocs_ivory/img/favicon.ico b/mkdocs_ivory/img/favicon.ico deleted file mode 100644 index e85006a3..00000000 Binary files a/mkdocs_ivory/img/favicon.ico and /dev/null differ diff --git a/mkdocs_ivory/js/theme.js b/mkdocs_ivory/js/theme.js deleted file mode 100644 index 894c081c..00000000 --- a/mkdocs_ivory/js/theme.js +++ /dev/null @@ -1,21 +0,0 @@ -function ready() { - $('.nav .section').each(function() { - $(this).click(function(e) { - $(this).toggleClass("hide"); - $(this).parent().children(".subnav").toggleClass("hide"); - }); - }); - - $('.hamburger').click(function(e) { - $('html').toggleClass("show"); - $('aside').toggleClass("show"); - $('.home-top .site-name').toggleClass("hide"); - }); - - $('.arrow').click(function(e) { - $('aside').toggleClass("hide"); - $(this).toggleClass("hide"); - }); -} - -$(ready); diff --git a/mkdocs_ivory/main.html b/mkdocs_ivory/main.html deleted file mode 100644 index 62172baf..00000000 --- a/mkdocs_ivory/main.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "base.html" %} - -{# -The entry point for the ReadTheDocs Theme. - -Any theme customisations should override this file to redefine blocks defined in -the various templates. The custom theme should only need to define a main.html -which `{% extends "base.html" %}` and defines various blocks which will replace -the blocks defined in base.html and its included child templates. -#} \ No newline at end of file diff --git a/mkdocs_ivory/mkdocs_theme.yml b/mkdocs_ivory/mkdocs_theme.yml deleted file mode 100644 index d3eecc9f..00000000 --- a/mkdocs_ivory/mkdocs_theme.yml +++ /dev/null @@ -1,10 +0,0 @@ -# Config options for 'ivory' theme - -static_templates: - - 404.html - -include_search_page: true -search_index_only: false - -highlightjs: true -hljs_languages: [] diff --git a/mkdocs_ivory/nav.html b/mkdocs_ivory/nav.html deleted file mode 100644 index 58c27d40..00000000 --- a/mkdocs_ivory/nav.html +++ /dev/null @@ -1,22 +0,0 @@ -{%- if nav_item.is_section -%} - -{%- elif nav_item.toc -%} -{%- for toc_item in nav_item.toc -%} -{{ nav_item.title }} -{%- endfor %} -{%- else %} -{{ nav_item.title }} -{%- endif -%} - -{%- if nav_item == page or nav_item.children %} - -{%- endif %} diff --git a/mkdocs_ivory/repo.html b/mkdocs_ivory/repo.html deleted file mode 100644 index 26d98bdc..00000000 --- a/mkdocs_ivory/repo.html +++ /dev/null @@ -1,19 +0,0 @@ -
- {%- if config.repo_name %} - - {%- endif %} - {%- if page.previous_page %} - - {%- endif %} - {%- if page.next_page %} - - {%- endif %} -
\ No newline at end of file diff --git a/mkdocs_ivory/search.html b/mkdocs_ivory/search.html deleted file mode 100644 index 08fddf22..00000000 --- a/mkdocs_ivory/search.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -

Search Results

- - - -
- Searching... -
- -{% endblock %} \ No newline at end of file diff --git a/mkdocs_ivory/searchbox.html b/mkdocs_ivory/searchbox.html deleted file mode 100644 index 04d935d6..00000000 --- a/mkdocs_ivory/searchbox.html +++ /dev/null @@ -1,5 +0,0 @@ -
-
- -
-
\ No newline at end of file diff --git a/mkdocs_ivory/toc.html b/mkdocs_ivory/toc.html deleted file mode 100644 index fedfec3f..00000000 --- a/mkdocs_ivory/toc.html +++ /dev/null @@ -1,7 +0,0 @@ -{%- for toc_item in page.toc %} -{%- if toc_item.children %} -{%- for toc_item in toc_item.children %} - -{%- endfor %} -{%- endif %} -{%- endfor %} \ No newline at end of file