First commit, containing the basic system.
- TODO: Add/Remove item system (so it's not fixed to two).
This commit is contained in:
parent
c2264dd11b
commit
38b4d5562c
4 changed files with 191 additions and 0 deletions
25
dist/css/beautify.css
vendored
Normal file
25
dist/css/beautify.css
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
pre {
|
||||
outline: 1px solid #ccc;
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.string {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.number {
|
||||
color: darkorange;
|
||||
}
|
||||
|
||||
.boolean {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.null {
|
||||
color: magenta;
|
||||
}
|
||||
|
||||
.key {
|
||||
color: red;
|
||||
}
|
Reference in a new issue