-
Notifications
You must be signed in to change notification settings - Fork 626
Expand file tree
/
Copy paththemes.ts
More file actions
63 lines (61 loc) · 1.67 KB
/
Copy paththemes.ts
File metadata and controls
63 lines (61 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { THEME } from '@/context/themeContext';
export type THEME_DATA = {
id: number;
name: THEME;
background: string;
buttonColor: string;
'board-light': string;
'board-dark': string;
'board-image': string;
};
export const THEMES_DATA: THEME_DATA[] = [
{
id: 1,
name: 'default',
background: '#302E2B',
buttonColor: '#16a34a',
'board-light': '#EBECD0',
'board-dark': '#739552',
'board-image': 'https://www.chess.com/bundles/web/images/offline-play/standardboard.1d6f9426.png',
},
{
id: 2,
name: 'bubblegum',
background: '#E6455E',
buttonColor: '#FBD9E1',
'board-light': '#FEFFFE',
'board-dark': '#FBD9E1',
'board-image':
'https://res.cloudinary.com/dcugqfvvg/image/upload/e_improve,e_sharpen/v1718047051/screenshot-localhost_5173-2024.06.11-00_44_01_pxwr43.png',
},
{
id: 3,
name: 'Blue',
background: '#030712',
buttonColor: '#164e63',
'board-light': '#cffafe',
'board-dark': '#164e63',
'board-image':
'https://thumbs.dreamstime.com/b/chess-board-blue-colors-chess-pieces-vector-illustration-241711727.jpg',
},
{
id: 4,
name: 'Violet',
background: '#6b7280',
buttonColor: '#3b0764',
'board-light': '#d8b4fe',
'board-dark': '#4338ca',
'board-image':
'https://thumbs.dreamstime.com/b/chess-board-blue-colors-chess-pieces-vector-illustration-241711727.jpg',
},
{
id: 5,
name: 'Red',
background: '#fda4af',
buttonColor: '#e11d48',
'board-light': '#fecdd3',
'board-dark': '#e11d48',
'board-image':
'https://thumbs.dreamstime.com/b/chess-board-blue-colors-chess-pieces-vector-illustration-241711727.jpg',
},
];