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

7 lines
No EOL
222 B
TypeScript

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`);
}