 09d456e477
			
		
	
	
		09d456e477
		
			
		
	
	
	
	
		
			
			PHP-CS-Fixer allow to check different things than phpcs and it allows code to be more consistent. Configuration can be changed in `.php_cs`
		
			
				
	
	
		
			19 lines
		
	
	
		
			526 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			526 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [['FFAABBCC', 0.1], 'FFB2C1D1'], //  RGBA
 | |
|     [['FFAABBCC', -0.1], 'FF99A8B7'], //  RGBA
 | |
|     [['AABBCC', 0.1], 'B2C1D1'], //  RGB
 | |
|     [['AABBCC', -0.1], '99A8B7'],
 | |
|     [['FF0000', 0.1], 'FF1919'],
 | |
|     [['FF0000', -0.1], 'E50000'],
 | |
|     [['FF8080', 0.1], 'FF8C8C'],
 | |
|     [['FF8080', -0.1], 'E57373'],
 | |
|     [['FF0000', 0.15], 'FF2626'],
 | |
|     [['FF0000', -0.15], 'D80000'],
 | |
|     [['FF8080', 0.15], 'FF9393'],
 | |
|     [['FF8080', -0.15], 'D86C6C'],
 | |
|     [['FFF008', 0.5], 'FFF783'],
 | |
|     [['FFF008', -0.5], '7F7804'],
 | |
| ];
 |