Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/theme/cool2no-geometry-ruleset.ts is written in an unsupported language. File is not indexed.

0001 import {cool2ColorRules} from "./cool2-geometry-ruleset";
0002 
0003 export const cool2NoOutlineColorRules = cool2ColorRules.map(config => ({
0004   // keep everything else the same…
0005   ...config,
0006   // but rebuild the rules array, forcing outline:false
0007   rules: config.rules.map(rule => ({
0008     ...rule,
0009     outline: false
0010   }))
0011 }));