2023-08-28 14:47:29 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
|
|
|
|
namespace WebView {
|
|
|
|
|
2024-03-18 16:22:27 +13:00
|
|
|
String highlight_source(URL::URL const&, StringView);
|
2023-08-28 14:47:29 -04:00
|
|
|
|
2023-11-22 11:54:17 -05:00
|
|
|
constexpr inline StringView HTML_HIGHLIGHTER_STYLE = R"~~~(
|
|
|
|
.html {
|
|
|
|
font-size: 10pt;
|
|
|
|
font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
/* FIXME: We should be able to remove the HTML style when "color-scheme" is supported */
|
|
|
|
html {
|
|
|
|
background-color: rgb(30, 30, 30);
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.comment {
|
|
|
|
color: lightgreen;
|
|
|
|
}
|
|
|
|
.tag {
|
|
|
|
color: orangered;
|
|
|
|
}
|
|
|
|
.attribute-name {
|
|
|
|
color: orange;
|
|
|
|
}
|
|
|
|
.attribute-value {
|
|
|
|
color: deepskyblue;
|
|
|
|
}
|
2023-11-23 12:26:38 -05:00
|
|
|
.internal {
|
|
|
|
color: darkgrey;
|
|
|
|
}
|
2023-11-22 11:54:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
.comment {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
.tag {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
.attribute-name {
|
|
|
|
color: darkorange;
|
|
|
|
}
|
|
|
|
.attribute-value {
|
|
|
|
color: blue;
|
|
|
|
}
|
2023-11-23 12:26:38 -05:00
|
|
|
.internal {
|
|
|
|
color: dimgray;
|
|
|
|
}
|
2023-11-22 11:54:17 -05:00
|
|
|
}
|
|
|
|
)~~~"sv;
|
|
|
|
|
2023-08-28 14:47:29 -04:00
|
|
|
}
|