@fallencodes/seyfert-utils 1.3.2 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,4 +6,26 @@ export declare const hexRegex: RegExp;
6
6
  export declare const userMentionRegex: RegExp;
7
7
  export declare const roleMentionRegex: RegExp;
8
8
  export declare const channelMentionRegex: RegExp;
9
+ export declare const colors: {
10
+ gold: number;
11
+ orange: number;
12
+ yellow: number;
13
+ red: number;
14
+ darkRed: number;
15
+ lightRed: number;
16
+ burgundy: number;
17
+ olive: number;
18
+ green: number;
19
+ darkGreen: number;
20
+ lightGreen: number;
21
+ blue: number;
22
+ darkBlue: number;
23
+ lightBlue: number;
24
+ purple: number;
25
+ lavender: number;
26
+ darkPurple: number;
27
+ pink: number;
28
+ darkPink: number;
29
+ lightPink: number;
30
+ };
9
31
  //# sourceMappingURL=variables.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../src/variables.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,WAAW;;;GAGvB,CAAC;AAGF,eAAO,MAAM,QAAQ,QAA2B,CAAC;AAGjD,eAAO,MAAM,gBAAgB,QAAwB,CAAC;AAGtD,eAAO,MAAM,gBAAgB,QAAyB,CAAC;AAGvD,eAAO,MAAM,mBAAmB,QAAwB,CAAC"}
1
+ {"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../src/variables.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,WAAW;;;GAGvB,CAAC;AAGF,eAAO,MAAM,QAAQ,QAA2B,CAAC;AAGjD,eAAO,MAAM,gBAAgB,QAAwB,CAAC;AAGtD,eAAO,MAAM,gBAAgB,QAAyB,CAAC;AAGvD,eAAO,MAAM,mBAAmB,QAAwB,CAAC;AAGzD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;CA0BlB,CAAC"}
@@ -11,3 +11,26 @@ export const userMentionRegex = /<@(?<id>\d{17,20})>/;
11
11
  export const roleMentionRegex = /<@&(?<id>\d{17,20})>/;
12
12
  /* A regex that matches channel mentions. */
13
13
  export const channelMentionRegex = /<#(?<id>\d{17,20})>/;
14
+ /* Default hex colours I use across my projects. */
15
+ export const colors = {
16
+ gold: 0xefbf04,
17
+ orange: 0xffa800,
18
+ yellow: 0xfaff6d,
19
+ red: 0xfa0000,
20
+ darkRed: 0x780606,
21
+ lightRed: 0xfc5757,
22
+ burgundy: 0x660033,
23
+ olive: 0x636b2f,
24
+ green: 0x008d3d,
25
+ darkGreen: 0x004d22,
26
+ lightGreen: 0x5cd25c,
27
+ blue: 0x00a1ff,
28
+ darkBlue: 0x0056ac,
29
+ lightBlue: 0x59c2ff,
30
+ purple: 0x9747ff,
31
+ lavender: 0xbc87fd,
32
+ darkPurple: 0x7517f0,
33
+ pink: 0xff61e7,
34
+ darkPink: 0x9c009c,
35
+ lightPink: 0xffa3f1
36
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fallencodes/seyfert-utils",
3
3
  "type": "module",
4
- "version": "1.3.2",
4
+ "version": "1.3.5",
5
5
  "license": "MIT",
6
6
  "description": "A collection of various utility/helper code I use in my Seyfert projects.",
7
7
  "main": "build/index.js",