···1212 enforce: 'pre', // Ensure this plugin runs first
1313 transform(code, id) {
1414 if (id.endsWith('app.css')) {
1515- const colorsCode = Deno.readTextFileSync(Deno.cwd() + '/themes/colors.css');
1615 // Read the theme file and replace the contents of app.css with it
1716 // Needs full path to the file
1817 const themeCode = Deno.readTextFileSync(Deno.cwd() + '/themes/' + themeFolder + '/theme.css');
···20192120 // and add a comment at the top
2221 const themeComment = `/* Generated from ${themeFolder} */\n`;
2323- const themeCodeWithComment = themeComment + colorsCode + themeCode;
2222+ const themeCodeWithComment = themeComment + themeCode;
2423 // Return the theme code as the new contents of app.css
2524 return {
2625 code: themeCodeWithComment,