|  | @@ -60,12 +60,21 @@ There are eight themes available at this time.
 | 
	
		
			
			| 60 | 60 |  
 | 
	
		
			
			| 61 | 61 |  
 | 
	
		
			
			| 62 | 62 |  
 | 
	
		
			
			| 63 |  | -To use a theme, add anyone of the available theme classes to the `<body>` element in the `default.html` layout, like so:
 | 
	
		
			
			|  | 63 | +To use a theme, add the `themeColor` variable under `params``, like so:
 | 
	
		
			
			| 64 | 64 |  
 | 
	
		
			
			| 65 |  | -```html
 | 
	
		
			
			| 66 |  | -<body class="theme-base-08">
 | 
	
		
			
			| 67 |  | -  ...
 | 
	
		
			
			| 68 |  | -</body>
 | 
	
		
			
			|  | 65 | +**TOML**
 | 
	
		
			
			|  | 66 | +```toml
 | 
	
		
			
			|  | 67 | +theme = "hyde"
 | 
	
		
			
			|  | 68 | +
 | 
	
		
			
			|  | 69 | +[params]
 | 
	
		
			
			|  | 70 | +  themeColor = "theme-base-09"
 | 
	
		
			
			|  | 71 | +```
 | 
	
		
			
			|  | 72 | +
 | 
	
		
			
			|  | 73 | +**YAML**
 | 
	
		
			
			|  | 74 | +```
 | 
	
		
			
			|  | 75 | +theme: "hyde"
 | 
	
		
			
			|  | 76 | +params:
 | 
	
		
			
			|  | 77 | +  themeColor: "theme-base-09"
 | 
	
		
			
			| 69 | 78 |  ```
 | 
	
		
			
			| 70 | 79 |  
 | 
	
		
			
			| 71 | 80 |  To create your own theme, look to the Themes section of [included CSS file](https://github.com/poole/hyde/blob/master/public/css/hyde.css). Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.
 |