Merge branch 'dev'
commit
aba223f42c
|
@ -119,11 +119,7 @@ export default class Util {
|
|||
}
|
||||
|
||||
public decimalToHex(int: number): string {
|
||||
const red = (int && 0x0000ff) << 16;
|
||||
const green = int && 0x00ff00;
|
||||
const blue = (int && 0xff0000) >>> 16;
|
||||
const number = red | green | blue;
|
||||
const asHex = number.toString(16);
|
||||
return '#000000'.substring(0, 7 - asHex.length) + asHex;
|
||||
const hex = int.toString(16);
|
||||
return '#000000'.substring(0, 7 - hex.length) + hex;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -97,12 +97,19 @@
|
|||
{
|
||||
"name": "Hector",
|
||||
"id": "377781496292835339",
|
||||
"title": "Core Team",
|
||||
"title": "Associate",
|
||||
"emailAddress": "hector@staff.libraryofcode.org",
|
||||
"gitlab": "https://gitlab.libraryofcode.org/Hector",
|
||||
"github": "https://github.com/Hector6704",
|
||||
"bio": "Hi there, I'm the developer of Delta, the Discord bot. I'm a free-time French JavaScript developer. I hope you'll enjoy LOC!"
|
||||
},
|
||||
{
|
||||
"name": "Realitus",
|
||||
"id": "156450671338586112",
|
||||
"title": "Associate",
|
||||
"github": "https://github.com/Realitus",
|
||||
"bio": "A hobbyist software developer with some rather strange ideas, and even stranger implementations."
|
||||
},
|
||||
{
|
||||
"name": "KhaaZ",
|
||||
"id": "179908288337412096",
|
||||
|
|
Loading…
Reference in New Issue