Temp: import themes from tuna
This commit is contained in:
47
src/lib/themes/definitions/solarizeddark.ts
Normal file
47
src/lib/themes/definitions/solarizeddark.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import type { Theme } from '../types';
|
||||
|
||||
export const solarizeddark: Theme = {
|
||||
name: 'Solarized Dark',
|
||||
colors: {
|
||||
background: '#002b36',
|
||||
surface: '#073642',
|
||||
border: '#586e75',
|
||||
text: '#839496',
|
||||
textSecondary: '#657b83',
|
||||
accent: '#268bd2',
|
||||
accentHover: '#2aa198',
|
||||
input: '#073642',
|
||||
inputBorder: '#586e75',
|
||||
button: '#073642',
|
||||
buttonHover: '#094551',
|
||||
danger: '#dc322f',
|
||||
dangerHover: '#cb4b16',
|
||||
},
|
||||
editor: {
|
||||
background: '#002b36',
|
||||
foreground: '#839496',
|
||||
caret: '#839496',
|
||||
selection: '#073642',
|
||||
activeLine: '#073642',
|
||||
gutter: '#002b36',
|
||||
gutterText: '#586e75',
|
||||
activeLineGutter: '#073642',
|
||||
lineNumber: '#586e75',
|
||||
},
|
||||
syntax: {
|
||||
keyword: '#859900',
|
||||
operator: '#859900',
|
||||
string: '#2aa198',
|
||||
number: '#d33682',
|
||||
boolean: '#268bd2',
|
||||
comment: '#586e75',
|
||||
function: '#268bd2',
|
||||
class: '#b58900',
|
||||
variable: '#839496',
|
||||
property: '#839496',
|
||||
constant: '#cb4b16',
|
||||
type: '#b58900',
|
||||
tag: '#268bd2',
|
||||
attribute: '#93a1a1',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user