Zed Editor Theme List
This list is generated from the themes in the extensions repo.
Last updated: 10 minutes ago
Made with Remedy / Project repo here
0x96f Theme 0x96f Theme
// Interface to type the structure of Gifts of the Spirit
interface GiftOfTheSpirit {
  name: string;
  description: string;
}

// Define the gifts of the Spirit based on the book of Galatians
const giftsOfTheSpirit: GiftOfTheSpirit[] = [
  { name: "Love", description: "Unconditional love that comes from God." },
  { name: "Joy", description: "A deep-rooted, inspired happiness." },
  { name: "Peace", description: "A tranquility and quietness of spirit." },
  { ...others },
];

// Function to display the information about a specific gift of the Spirit
function displayGift(gift: GiftOfTheSpirit): void {
  console.log(`Gift: ${gift.name}`);
  console.log(`Description: ${gift.description}`);
}

// Display all the gifts of the Spirit from Galatians
console.log("Gifts of the Spirit from Galatians:");
giftsOfTheSpirit.forEach(displayGift);
Adaltas Dark Adaltas Theme
// Interface to type the structure of Gifts of the Spirit
interface GiftOfTheSpirit {
  name: string;
  description: string;
}

// Define the gifts of the Spirit based on the book of Galatians
const giftsOfTheSpirit: GiftOfTheSpirit[] = [
  { name: "Love", description: "Unconditional love that comes from God." },
  { name: "Joy", description: "A deep-rooted, inspired happiness." },
  { name: "Peace", description: "A tranquility and quietness of spirit." },
  { ...others },
];

// Function to display the information about a specific gift of the Spirit
function displayGift(gift: GiftOfTheSpirit): void {
  console.log(`Gift: ${gift.name}`);
  console.log