sparkles: Styles in debug plugin
This commit is contained in:
parent
d6fe514f6a
commit
8d1838cab0
1 changed files with 33 additions and 0 deletions
|
@ -1,5 +1,29 @@
|
|||
import { version, name } from "../package.json";
|
||||
|
||||
const color = {
|
||||
info: "#FFF",
|
||||
warning: "#FFF",
|
||||
error: "#FFF",
|
||||
success: "#FFF"
|
||||
};
|
||||
const background = {
|
||||
info: "#29ABE0",
|
||||
warning: "#F47C3C",
|
||||
error: "#d9534f",
|
||||
success: "#4caf50"
|
||||
};
|
||||
|
||||
/* Returns an object to style debug output */
|
||||
function debugStyle(type, text) {
|
||||
let style = `color: ${color[type]};`;
|
||||
style += `background: ${background[type]};`;
|
||||
style += "font-weight: 600;";
|
||||
style += "padding: 0 5px;";
|
||||
style += "border-radius: 3px;";
|
||||
|
||||
return style;
|
||||
}
|
||||
|
||||
export default {
|
||||
name: name,
|
||||
version: version,
|
||||
|
@ -14,6 +38,15 @@ export default {
|
|||
u,
|
||||
g
|
||||
);
|
||||
} else if(typeof d === 'object' && typeof d.style !== 'undefined') {
|
||||
console.log(
|
||||
"%c"+d.text,
|
||||
debugStyle(d.style),
|
||||
e,
|
||||
b,
|
||||
u,
|
||||
g
|
||||
);
|
||||
} else {
|
||||
console.log(
|
||||
"%cDebug",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue