- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rel="noopener noreferrer external" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a class="icon-container" target="_blank" rel="noopener noreferrer external" href="https://mail.google.com/mail/u/0/?view=cm&fs=1&[email protected]&tf=1"></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.no-highlight-on-cursor-pointer{ | |
-webkit-tap-highlight-color: transparent; | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function generateRandomColorPalette(userColor = {}, userVariant = {}) { | |
const { color: defaultColor } = generateRandomColor(); | |
const defaultVariant = { vR: 15, vG: 15, vB: 15, vA: 200 }; | |
const color = Object.assign({}, defaultColor, userColor); | |
const variant = Object.assign({}, defaultVariant, userVariant); | |
const { r, g, b, a } = color; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function generateRandomNumber(min, max) { | |
return Math.floor(Math.random() * (max - min + 1) + min); | |
} | |
function generateRandomColor(userConfig = {}) { | |
const defaultConfig = { | |
r: [0, 255], | |
g: [0, 255], | |
b: [0, 255], | |
a: [1, 1], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function interpolate(xInterval, yInterval) { | |
let [x0, x1] = xInterval; | |
let [y0, y1] = yInterval; | |
return function (xA) { | |
if (xA > x1) xA = x1; | |
else if (xA < x0) xA = x0; | |
const yA = y0 + (y1 - y0) * ((xA - x0) / (x1 - x0)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function abbreviateNumber(num) { | |
return Math.abs(num) > 999 | |
? Math.sign(num) * (Math.abs(num) / 1000).toFixed(1) + 'k' | |
: Math.sign(num) * Math.abs(num); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.theme-dark { | |
--header-primary: #fff; | |
--header-secondary: #b9bbbe; | |
--text-normal: #dcddde; | |
--text-muted: #72767d; | |
--text-link: #00b0f4; | |
--channels-default: #8e9297; | |
--interactive-normal: #b9bbbe; | |
--interactive-hover: #dcddde; | |
--interactive-active: #fff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::-webkit-scrollbar { | |
width: 12px; | |
background-color: transparent; | |
} | |
::-webkit-scrollbar-button { | |
display: none; | |
width: 0; | |
height: 0; | |
} |