テキストの色を変更するために coni.h という名前のライブラリを見つけました。しかし、関数の 1 つでエラーが発生します: textcolour(RED); 未定義だそうです。
#include <iostream>
#include <string>
#include <conio.h>
#include "Storyline.h"
using namespace std;
int main()
{
Storyline story;
story.Story("Title.txt");
textcolor(MAGENTA+BLINK);
cout << "Hello";
getchar();
getchar();
}