23 lines
		
	
	
		
			386 B
		
	
	
	
		
			CSS
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			386 B
		
	
	
	
		
			CSS
		
	
	
	
:root {
 | 
						|
  --b9h-color-bg: #1c2729;
 | 
						|
  --b9h-color-bg-alpha: rgba(28,39,41,0.8);
 | 
						|
  --b9h-color-fg: #b3bfb6;
 | 
						|
  --b9h-color-accent: #ff5821;
 | 
						|
  --b9h-color-green: #1cd95f;
 | 
						|
  --b9h-color-red: #f72520;
 | 
						|
}
 | 
						|
 | 
						|
html {
 | 
						|
  background-color: var(--b9h-color-bg);
 | 
						|
  color: var(--b9h-color-fg);
 | 
						|
}
 | 
						|
 | 
						|
.marker {
 | 
						|
  background-color: var(--b9h-color-accent);
 | 
						|
}
 | 
						|
 | 
						|
a {
 | 
						|
  color: inherit;
 | 
						|
  text-decoration: none;
 | 
						|
}
 |