-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.go
More file actions
104 lines (81 loc) · 2.22 KB
/
Copy pathconst.go
File metadata and controls
104 lines (81 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package avatar
const None = "::None"
// Accessory defines preset accessory types for an avatar.
type Accessory string
const (
AccessoryNecklace Accessory = "necklace"
AccessoryChoker Accessory = "choker"
)
// Beard defines preset beard types for an avatar.
type Beard string
const (
BeardMustach Beard = "mustach"
BeardFancyMustach Beard = "fancy-mustach"
BeardNormal Beard = "beard"
BeardMedium Beard = "medium-beard"
BeardLong Beard = "long-beard"
)
// Dress defines preset dress types for an avatar.
type Dress string
const (
DressSuit Dress = "suit"
DressShirt Dress = "shirt"
DressTShirt Dress = "t-shirt"
)
// Eye defines preset eye types for an avatar.
type Eye string
// Eyebrow defines preset eyebrow types for an avatar.
type Eyebrow string
// Glasses defines preset glasses types for an avatar.
type Glasses string
const (
GlassesPrescription Glasses = "prescription"
GlassesRoundPrescription Glasses = "round-prescription"
GlassesSunglass Glasses = "sunglass"
GlassesRoundSunglass Glasses = "round-sunglass"
)
// Hair defines preset hair types for an avatar.
type Hair string
const (
HairShort Hair = "short"
HairMedium Hair = "medium"
HairWavy Hair = "wavy"
HairCurly Hair = "curly"
)
// HairColor defines preset hair color types for an avatar.
type HairColor string
const (
HairBrown HairColor = "brown"
HairLight HairColor = "light"
HairDark HairColor = "dark"
)
// Mouth defines preset mouth types for an avatar.
type Mouth string
// Palette defines preset palette types for an avatar.
type Palette string
const (
Purple Palette = "purple"
Green Palette = "green"
Blue Palette = "blue"
Yellow Palette = "yellow"
Orange Palette = "orange"
Red Palette = "red"
Teal Palette = "teal"
Pink Palette = "pink"
)
// Shape defines preset background shape types for an avatar.
type Shape string
const (
ShapeFill Shape = "fill"
ShapeCircle Shape = "circle"
ShapePolygon Shape = "polygon"
)
// SkinColor defines preset skin color types for an avatar.
type SkinColor string
const (
SkinWhite SkinColor = "white"
SkinBrown SkinColor = "brown"
SkinBlack SkinColor = "black"
)
// Shape defines preset sticker types for an avatar.
type Sticker string