Public
Back
Version 9
6/11/2024
export const oceanTheme = {
fontLink: `<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">`,
styles: `
/* General styles */
body {
padding: 5px;
line-height: 1.6;
color: #0f3926;
text-align: left;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
background: linear-gradient(to top, #2e8b57, #87ceeb);
overflow-x: hidden;
position: relative;
}
a {
color: inherit;
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
/* Header styles */
.header {
margin-top: 8px;
margin-bottom: 12px;
}
.header .intro {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 16px;
Updated: June 12, 2024