alifnd9 commited on
Commit
13f23b7
·
verified ·
1 Parent(s): 1b22f5c

Create basic_colors.json

Browse files
Files changed (1) hide show
  1. basic_colors.json +30 -0
basic_colors.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "Basic Colors",
3
+ "colors": [
4
+ {
5
+ "name": "Merah",
6
+ "hex": "#FF0000",
7
+ "rgb": [255, 0, 0]
8
+ },
9
+ {
10
+ "name": "Hijau",
11
+ "hex": "#00FF00",
12
+ "rgb": [0, 255, 0]
13
+ },
14
+ {
15
+ "name": "Biru",
16
+ "hex": "#0000FF",
17
+ "rgb": [0, 0, 255]
18
+ },
19
+ {
20
+ "name": "Kuning",
21
+ "hex": "#FFFF00",
22
+ "rgb": [255, 255, 0]
23
+ },
24
+ {
25
+ "name": "Ungu",
26
+ "hex": "#800080",
27
+ "rgb": [128, 0, 128]
28
+ }
29
+ ]
30
+ }