| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html id="doc">
- <head>
- <script>
- const theme = window.localStorage.getItem("theme");
- if(theme) {
- const themeObject = JSON.parse(theme);
- const htmlDoc = document.getElementById("doc");
- const appDoc = document.getElementById("app-root");
- if(htmlDoc) {
- htmlDoc.style.backgroundColor = themeObject.colors.content.container.default;
- }
- if(appDoc) {
- appDoc.style.backgroundColor = themeObject.colors.content.container.default;
- }
- }
- </script>
- <meta
- charset="utf-8"
- />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1"
- />
- <link
- rel="icon"
- type="image/x-icon"
- href="http://ncore.nibgat.space/assets/images/darklogo.png"
- />
- <link
- rel="stylesheet"
- href="https://fonts.nibgat.com/ncore.css"
- />
- <title>NCore - Design System & UI Kit</title>
- <style>
- html, body, #app-root {
- flex-direction: column;
- display: flex;
- height: 100%;
- padding: 0;
- margin: 0;
- }
- </style>
- </head>
- <body>
- <div id="app-root"></div>
- </body>
- </html>
|