You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			865 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			865 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Theme } from './type';
 | |
| import theme_light from './light';
 | |
| 
 | |
| const theme: Theme = {
 | |
| 	...theme_light,
 | |
| 
 | |
| 	backgroundColor: '#fdf6e3',
 | |
| 	backgroundColorTransparent: 'rgba(253, 246, 227, 0.9)',
 | |
| 	oddBackgroundColor: '#eee8d5',
 | |
| 	color: '#657b83', // For regular text
 | |
| 	colorError: '#dc322f',
 | |
| 	colorWarn: '#cb4b16',
 | |
| 	colorFaded: '#839496', // For less important text;
 | |
| 	dividerColor: '#eee8d5',
 | |
| 	selectedColor: '#eee8d5',
 | |
| 	urlColor: '#268bd2',
 | |
| 
 | |
| 	backgroundColor2: '#002b36',
 | |
| 	color2: '#eee8d5',
 | |
| 	selectedColor2: '#6c71c4',
 | |
| 	colorError2: '#cb4b16',
 | |
| 
 | |
| 	raisedBackgroundColor: '#eee8d5',
 | |
| 	raisedColor: '#073642',
 | |
| 
 | |
| 	warningBackgroundColor: '#b5890055',
 | |
| 
 | |
| 	tableBackgroundColor: '#fdf6e3',
 | |
| 	codeBackgroundColor: '#fdf6e3',
 | |
| 	codeBorderColor: '#eee8d5',
 | |
| 	codeColor: '#002b36',
 | |
| 
 | |
| 	codeMirrorTheme: 'solarized light',
 | |
| 	codeThemeCss: 'atom-one-light.css',
 | |
| };
 | |
| 
 | |
| export default theme;
 |