54 lines
1.2 KiB
HTML
54 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>JSONEditor | Custom styling</title>
|
|
|
|
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
|
|
<script src="../dist/jsoneditor.js"></script>
|
|
|
|
<style type="text/css">
|
|
#jsoneditor {
|
|
width: 500px;
|
|
height: 500px;
|
|
}
|
|
|
|
p {
|
|
width: 500px;
|
|
font-family: "DejaVu Sans", sans-serif;
|
|
}
|
|
</style>
|
|
|
|
<link href="./css/darktheme.css" rel="stylesheet" type="text/css">
|
|
|
|
</head>
|
|
<body>
|
|
<p>
|
|
This example demonstrates how to customize the look of JSONEditor,
|
|
the editor below has a dark theme. Note that the example isn't worked
|
|
out for the mode <code>code</code>. To do that, you can load and configure
|
|
a custom theme for the Ace editor.
|
|
</p>
|
|
|
|
<div id="jsoneditor"></div>
|
|
|
|
<script>
|
|
// create the editor
|
|
const container = document.getElementById('jsoneditor')
|
|
const options = {
|
|
modes: ['tree', 'text']
|
|
}
|
|
const json = {
|
|
'array': [1, 2, 3],
|
|
'boolean': true,
|
|
'null': null,
|
|
'number': 123,
|
|
'object': {'a': 'b', 'c': 'd'},
|
|
'string': 'Hello World'
|
|
}
|
|
const editor = new JSONEditor(container, options, json)
|
|
</script>
|
|
</body>
|
|
</html>
|