Skip to content

Commit

Permalink
Refactor code
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Jan 15, 2025
1 parent d36017c commit c5b9f1a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/core/generator/config/defaultConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,28 @@ import { merge } from '../../helpers/object';
import type { Config } from '../../models/icons/config';
import type { RecursivePartial } from '../../types/recursivePartial';

const defaultColor = '#90a4ae'; // blue-gray-300

/**
* The options control the generator and decide which icons are disabled or not.
*/
export const getDefaultConfig = (): Required<Config> => ({
folders: {
theme: 'specific',
color: '#90a4ae',
color: defaultColor,
associations: {},
customClones: [],
},
rootFolders: {
color: '#90a4ae',
color: defaultColor,
associations: {},
},
activeIconPack: 'angular',
hidesExplorerArrows: false,
opacity: 1,
saturation: 1,
files: {
color: '#90a4ae',
color: defaultColor,
associations: {},
customClones: [],
},
Expand Down

0 comments on commit c5b9f1a

Please sign in to comment.