vsc-material-theme/extensions/accents-setter/accented-theme-name.ts

7 lines
222 B
TypeScript
Raw Normal View History

import * as path from 'path';
import PATHS from '../consts/paths'
export default function accentedThemeName(accentName: string): string {
return path.join(PATHS.THEMES, `./Material-Theme-Icons-${ accentName }.json`);
}