change theme to match mine better
This commit is contained in:
parent
95f3e0aeed
commit
0f67dd1318
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" data-theme="dark">
|
||||
<html lang="en" data-theme="black">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.32.2/ace.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.32.2/mode-java.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.32.2/mode-forth.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.32.2/theme-one_dark.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.32.2/theme-monokai.min.js"></script>
|
||||
</head>
|
||||
<body class="min-h-screen bg-base-100 text-base-content">
|
||||
|
||||
|
|
@ -60,12 +60,12 @@
|
|||
|
||||
inputEditor = ace.edit("input");
|
||||
inputEditor.session.setMode("ace/mode/java");
|
||||
inputEditor.setTheme("ace/theme/one_dark");
|
||||
inputEditor.setTheme("ace/theme/monokai");
|
||||
inputEditor.setOptions({ fontSize: "14px" });
|
||||
|
||||
outputEditor = ace.edit("output");
|
||||
outputEditor.session.setMode("ace/mode/forth");
|
||||
outputEditor.setTheme("ace/theme/one_dark");
|
||||
outputEditor.setTheme("ace/theme/monokai");
|
||||
outputEditor.setReadOnly(true);
|
||||
outputEditor.setOptions({ fontSize: "14px" });
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue