generated from rose-pine/rose-pine-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64edf9c
commit c898b16
Showing
7 changed files
with
1,749 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Rosé Pine", | ||
"version": "1.0.0", | ||
"authors": [ | ||
"Kainoa Kanter <[email protected]>" | ||
], | ||
"description": "soho vibes for zed", | ||
"repository": "https://github.com/rose-pine/zed" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,353 @@ | ||
:root { | ||
--schema: "https://zed.dev/schema/themes/v0.1.0.json"; | ||
--name: "Rosé Pine Dawn"; | ||
--author: "Kainoa Kanter <[email protected]>"; | ||
} | ||
|
||
themes { | ||
light { | ||
--appearance: "light"; | ||
--name: "Rosé Pine Dawn"; | ||
$foreground-accent: #d7827e; | ||
$foreground-higher-contrast: #575279; | ||
$foreground-high-contrast: #797593; | ||
$foreground: #9893a5; | ||
$foreground-low-contrast: #cecacd; | ||
$foreground-lower-contrast: #dfdad9; | ||
|
||
$background-lowest-contrast: #f2e9e1; | ||
$background-lower-contrast: #f2e9e1; | ||
$background-low-contrast: #fffaf3; | ||
$background: #faf4ed; | ||
$background-high-contrast: #faf4ed; | ||
$background-higher-contrast: #faf4ed; | ||
|
||
// UI | ||
$predictive: #797593; | ||
$modified: #ea9d34; | ||
$ignored: #9893a5; | ||
|
||
$info: #286983; | ||
|
||
$hint: #797593; | ||
$hint-background: mix($background-low-contrast, $info, 80%); | ||
|
||
$error: #b4637a; | ||
$error-background: mix($background-low-contrast, $error, 80%); | ||
$error-border: $error; | ||
|
||
$deleted: #b4637a; | ||
$created: #56949f; | ||
$warning: #ea9d34; | ||
|
||
// Terminal | ||
$black: #dfdad9; | ||
$red: #b4637a; | ||
$green: #286983; | ||
$yellow: #ea9d34; | ||
$blue: #56949f; | ||
$magenta: #907aa9; | ||
$cyan: #d7827e; | ||
$white: #575279; | ||
|
||
// Syntax highlighting | ||
$syntax1: #286983; | ||
$syntax2: #b4637a; | ||
$syntax3: #d7827e; | ||
$syntax4: #56949f; | ||
$syntax5: #907aa9; | ||
$syntax6: #286983; | ||
$syntax7: #ea9d34; | ||
$syntax8: #56949f; | ||
|
||
style { | ||
/* Editor */ | ||
--editor-foreground: #{$foreground}; | ||
--editor-background: #{$background}; | ||
--editor-gutter-background: #{$background}; | ||
--editor-active_line-background: #{$background-low-contrast}; | ||
--editor-line_number: #{$foreground-lower-contrast}; | ||
--editor-active_line_number: #{$foreground}; | ||
--editor-invisible: #{$foreground-lower-contrast}; | ||
--editor-wrap_guide: #{$foreground-lower-contrast}; | ||
--editor-active_wrap_guide: #{$foreground-lower-contrast}; | ||
|
||
/* Borders */ | ||
--border: #{$background-high-contrast}; | ||
--border-variant: #{$background-high-contrast}; | ||
--border-focused: #{$background-high-contrast}; | ||
--border-selected: #{$background-high-contrast}; | ||
--border-transparent: #{$background-high-contrast}; | ||
--border-disabled: #{$background-high-contrast}; | ||
|
||
/* Text */ | ||
--text: #{$foreground-high-contrast}; | ||
--text-muted: #{$foreground}; | ||
--text-placeholder: #{$foreground-lower-contrast}; | ||
--text-disabled: #{$foreground-lower-contrast}; | ||
--text-accent: #{$foreground-accent}; | ||
|
||
/* Layout */ | ||
--surface-background: #{$background-lower-contrast}; | ||
--elevated_surface-background: #{$background-lower-contrast}; | ||
--panel-background: #{$background}; | ||
--panel-focused_border: null; | ||
--background: #{$background}; | ||
--status_bar-background: #{$background}; | ||
--title_bar-background: #{$background}; | ||
--toolbar-background: #{$background}; | ||
|
||
/* Tabs */ | ||
--tab_bar-background: #{$background-high-contrast}; | ||
--tab-inactive_background: #{$background-high-contrast}; | ||
--tab-active_background: #{$background}; | ||
|
||
/* Buttons */ | ||
--element-background: #{$background-lower-contrast}; | ||
--element-hover: #{$background-lowest-contrast}; | ||
--element-active: #{$background-lowest-contrast}; | ||
--element-selected: #{$background-lowest-contrast}; | ||
--element-disabled: #{$background-lowest-contrast}; | ||
|
||
--predictive: #{$predictive}; | ||
--modified: #{$modified}; | ||
--ignored: #{$ignored}; | ||
--deleted: #{$deleted}; | ||
--created: #{$created}; | ||
--warning: #{$warning}; | ||
|
||
--hint: #{$hint}; | ||
--hint-background: #{$hint-background}; | ||
|
||
--error: #{$error}; | ||
--error-background: #{$error-background}; | ||
--error-border: #{$error-border}; | ||
|
||
--info: #{$info}; | ||
// --info-background: #{$info-background}; | ||
|
||
/* Scrollbar */ | ||
--scrollbar-thumb-background: #{$foreground}44; | ||
// --scrollbar-thumb-hover--background: #abb2bf; | ||
--scrollbar-thumb-border: transparent; | ||
--scrollbar-track-background: transparent; | ||
|
||
/* Terminal */ | ||
--terminal-background: #{$background}; | ||
--terminal-ansi-black: #{$black}; | ||
--terminal-ansi-red: #{$red}; | ||
--terminal-ansi-green: #{$green}; | ||
--terminal-ansi-yellow: #{$yellow}; | ||
--terminal-ansi-blue: #{$blue}; | ||
--terminal-ansi-magenta: #{$magenta}; | ||
--terminal-ansi-cyan: #{$cyan}; | ||
--terminal-ansi-white: #{$white}; | ||
|
||
/* Players */ | ||
players { | ||
p1 { | ||
--cursor: #{$white}; | ||
--background: #{$white}; | ||
--selection: #{$white}22; | ||
} | ||
p2 { | ||
--cursor: #{$blue}; | ||
--background: #{$blue}; | ||
--selection: #{$blue}44; | ||
} | ||
p3 { | ||
--cursor: #{$magenta}; | ||
--background: #{$magenta}; | ||
--selection: #{$magenta}44; | ||
} | ||
p4 { | ||
--cursor: #{$green}; | ||
--background: #{$green}; | ||
--selection: #{$green}44; | ||
} | ||
p5 { | ||
--cursor: #{$red}; | ||
--background: #{$red}; | ||
--selection: #{$red}44; | ||
} | ||
} | ||
|
||
/* Syntax highlighting */ | ||
syntax { | ||
attribute { | ||
color: #{$syntax3}; | ||
} | ||
boolean { | ||
color: #{$syntax3}; | ||
} | ||
comment { | ||
color: #{$foreground-low-contrast}; | ||
font-style: italic; | ||
} | ||
comment.doc { | ||
color: #{$syntax4}; | ||
} | ||
constant { | ||
color: #{$syntax3}; | ||
} | ||
constructor { | ||
color: #{$syntax2}; | ||
} | ||
embedded { | ||
color: #{$syntax4}; | ||
} | ||
emphasis { | ||
color: #{$syntax5}; | ||
font-style: italic; | ||
&.strong { | ||
color: #{$syntax7}; | ||
font-weight: 700; | ||
} | ||
} | ||
enum { | ||
color: #{$syntax8}; | ||
} | ||
function { | ||
color: #{$syntax6}; | ||
} | ||
hint { | ||
color: #{$syntax4}; | ||
} | ||
keyword { | ||
color: #{$syntax5}; | ||
} | ||
label { | ||
color: #{$syntax6}; | ||
} | ||
link_text { | ||
color: #{$syntax6}; | ||
} | ||
link_uri { | ||
color: #{$syntax5}; | ||
} | ||
number { | ||
color: #{$syntax7}; | ||
} | ||
operator { | ||
color: #{$syntax8}; | ||
} | ||
predictive { | ||
color: #{$syntax4}; | ||
} | ||
preproc { | ||
color: #{$syntax1}; | ||
} | ||
primary { | ||
color: #{$syntax5}; | ||
} // <-- | ||
property { | ||
color: #{$syntax2}; | ||
} | ||
punctuation { | ||
color: #{$syntax7}; | ||
} | ||
punctuation.bracket { | ||
color: #{$syntax3}; | ||
} | ||
punctuation.delimiter { | ||
color: #{$syntax7}; | ||
} | ||
punctuation.list_marker { | ||
color: #{$syntax7}; | ||
font-weight: 700; | ||
} | ||
punctuation.special { | ||
color: #{$syntax5}; | ||
} // <-- | ||
string { | ||
color: #{$syntax1}; | ||
&.escape { | ||
color: #{$syntax1}; | ||
} | ||
&.regex { | ||
color: #{$syntax1}; | ||
} | ||
&.special { | ||
color: #{$syntax8}; | ||
} | ||
&.special.symbol { | ||
color: #{$syntax8}; | ||
} | ||
} | ||
tag { | ||
color: #{$syntax5}; | ||
} | ||
text.literal { | ||
color: #{$syntax1}; | ||
} | ||
title { | ||
color: #{$syntax2}; | ||
font-weight: 700; | ||
} | ||
type { | ||
color: #{$syntax7}; | ||
} | ||
variable { | ||
color: #{$syntax4}; | ||
} | ||
variable.special { | ||
color: #{$syntax7}; | ||
} | ||
variant { | ||
color: #{$syntax6}; | ||
} | ||
} | ||
|
||
// TODO | ||
// --editor-subheader-background: null; | ||
// --editor-highlighted_line-background: null; | ||
// --editor-document_highlight-read_background: null; | ||
// --editor-document_highlight-write_background: null; | ||
// --scrollbar-thumb-hover_background: null; | ||
// --scrollbar-track-border: null; | ||
// --link_text-hover: null; | ||
// --conflict: null; | ||
// --conflict-background: null; | ||
// --conflict-border: null; | ||
// --created: null; | ||
// --created-background: null; | ||
// --created-border: null; | ||
// --deleted: null; | ||
// --deleted-background: null; | ||
// --deleted-border: null; | ||
// --error: null; | ||
// --error-background: null; | ||
// --error-border: null; | ||
// --hidden: #f00; | ||
// --hidden-background: #f00; | ||
// --hidden-border: #f00; | ||
// --hint: null; | ||
// --hint-background: null; | ||
// --hint-border: null; | ||
// --ignored: null; | ||
// --ignored-background: null; | ||
// --ignored-border: null; | ||
// --info: #f00; | ||
// --info-background: #f00; | ||
// --info-border: #f00; | ||
// --modified: null; | ||
// --modified-background: null; | ||
// --modified-border: null; | ||
// --predictive: null; | ||
// --predictive-background: null; | ||
// --predictive-border: null; | ||
// --renamed: null; | ||
// --renamed-background: null; | ||
// --renamed-border: null; | ||
// --success: null; | ||
// --success-background: null; | ||
// --success-border: null; | ||
// --unreachable: #f00; | ||
// --unreachable-background: #f00; | ||
// --unreachable-border: #f00; | ||
// --warning: null; | ||
// --warning-background: null; | ||
// --warning-border: null; | ||
} | ||
} | ||
} |
Oops, something went wrong.