! [20:50:48] [ERR] import { colorTable } from '../lib/data':1: Error loading KubeJS script: server_scripts:colorful_object_recipes.js': identifier is a reserved word: import (server_scripts:colorful_object_recipes.js#1)
server_scripts\colorful_object_recipes.js ```js
import { colorTable } from '../lib/data'
`data\data.js` ```js
// priority: 10000
export const title = (str) => `${str.charAt(0).toUpperCase()}${str.substring(1)}`
export const colorTable = {
red: 0x861f20,
orange: 0xd15a00,
yellow: 0xe2a615,
light_green: 0x589e17,
green: 0x455624,
blue: 0x2a2c8b,
light_blue: 0x2281c1,
aqua: 0x146f83,
purple: 0x5e1f98,
magenta: 0x9f2f9b,
pink: 0xc85f8b,
brown: 0x5a371e,
black: 0x090b10,
gray: 0x32353b,
light_gray: 0x74746e,
white: 0xc2c8d0
}