Skip to content

Commit

Permalink
word-break: keep-all 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
kyokugirl committed Jan 7, 2025
1 parent 6d1992a commit 24203ab
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions templates/_custom_css.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<style>
/* light mode colors */
body {
--primary-color: #5871a2;
--primary-pale-color: #5871a210;
--text-color: #3c4043;
--text-pale-color: #a3a5a9;
--bg-color: #ffffff;
--highlight-mark-color: #5f75b035;
--blockquote-color: #8e8d91;

--callout-note-color: #5871a2;
--callout-important-color: #8062b0;
--callout-warning-color: #936e51;
--callout-alert-color: #bc5252;
--callout-question-color: #477389;
--callout-tip-color: #3c8460;
}

/* dark mode colors */
body.dark {
--primary-color: #5d77ac;
--primary-pale-color: #5d77ac20;
--text-color: #9197a5;
--text-pale-color: #656a74;
--bg-color: #18191b;
--highlight-mark-color: #5f75b035;
--blockquote-color: #747983;

--callout-note-color: #5d77ac;
--callout-important-color: #8062b0;
--callout-warning-color: #936e51;
--callout-alert-color: #bc5252;
--callout-question-color: #477389;
--callout-tip-color: #3c8460;
}

/* typography */
body {
word-break: keep-all;
--main-font: ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
"Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji";
--code-font: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
"Liberation Mono", "Courier New", monospace;
--homepage-max-width: 768px;
--main-max-width: 768px;
--avatar-size: 56px;
--homepage-font-size: 16px;
--homepage-line-height: 1.75;
--paragraph-font-size: 16px;
--paragraph-line-height: 1.75;
--aside-font-size: 15px;
--img-border-radius: 0px;
--detail-border-radius: 0px;
--dark-mode-img-brightness: 0.75;
--dark-mode-chart-brightness: 0.75;
--inline-code-border-radius: 2px;
--inline-code-bg-color: var(--primary-pale-color);
--block-code-border-radius: 0px;
--block-code-border-color: var(--primary-color);
--detail-border-color: var(--primary-color);
}
</style>

0 comments on commit 24203ab

Please sign in to comment.